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

[ci] Fix use of OS_SLUG

parent b4760d92
No related branches found
No related tags found
No related merge requests found
Pipeline #25771 passed
...@@ -187,11 +187,6 @@ set_conda_channels() { ...@@ -187,11 +187,6 @@ set_conda_channels() {
} }
if [ -z "${OS_SLUG}" ]; then
OS_SLUG="${OSNAME}-64"
fi
export_env OS_SLUG
log_env PYTHON_VERSION log_env PYTHON_VERSION
check_env CI_PROJECT_DIR check_env CI_PROJECT_DIR
check_env CI_PROJECT_NAME check_env CI_PROJECT_NAME
...@@ -202,6 +197,11 @@ export_env BOB_PACKAGE_VERSION ...@@ -202,6 +197,11 @@ export_env BOB_PACKAGE_VERSION
OSNAME=`osname` OSNAME=`osname`
check_env OSNAME check_env OSNAME
if [ -z "${OS_SLUG}" ]; then
OS_SLUG="${OSNAME}-64"
fi
export_env OS_SLUG
DOCSERVER=http://www.idiap.ch DOCSERVER=http://www.idiap.ch
# Sets up the location of our rc file for conda # Sets up the location of our rc file for conda
......
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