Skip to content
Snippets Groups Projects
Commit 412a3987 authored by Nicolas "Pixel" Noble's avatar Nicolas "Pixel" Noble
Browse files

Shortcut the artifact builder early.

parent a6772080
No related branches found
No related tags found
No related merge requests found
...@@ -39,4 +39,8 @@ set -ex -o igncr || set -ex ...@@ -39,4 +39,8 @@ set -ex -o igncr || set -ex
curr_platform="$platform" curr_platform="$platform"
unset platform # variable named 'platform' breaks the windows build unset platform # variable named 'platform' breaks the windows build
python tools/run_tests/task_runner.py -f artifact $language $curr_platform $architecture if [ "$curr_platform" == "linux" ] && [ "$language" == "ruby" ] ; then
./tools/run_tests/build_artifact_ruby.sh
else
python tools/run_tests/task_runner.py -f artifact $language $curr_platform $architecture
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment