Skip to content
Snippets Groups Projects
Commit a3e76e1c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix build script check

parent 04dccf82
No related branches found
No related tags found
1 merge request!2Ci2
Pipeline #
......@@ -2,7 +2,7 @@
# Andre Anjos <andre.anjos@idiap.ch>
# Thu 22 Dec 2016 09:31:34 CET
if [ $# -lt 2 || $# -gt 4 ]; then
if [ $# -lt 2 -o $# -gt 4 ]; then
echo "Runs the nightly builds by setting environment variables and"
echo "proceeding in the order establish in the provided text file"
echo "usage: $0 <order.txt> <python-version> [<conda-root> [<env-name>]]"
......@@ -121,8 +121,8 @@ for f in `cat $1`; do
# Runs the whole shebang
run_cmd ./_ci/before_build.sh
run_cmd ./_ci/build.sh
#run_cmd ./_ci/before_test.sh
#run_cmd ./_ci/test.sh
run_cmd ./_ci/before_test.sh
run_cmd ./_ci/test.sh
# Copies the generated wheel to our provisional wheels repository
run_cmd cp -fv dist/*.whl ${WHEELS_DIR}/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment