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

[ci] Fix variable being checked

parent eb2369ff
No related branches found
No related tags found
No related merge requests found
Pipeline #85103 passed
......@@ -12,17 +12,17 @@ variables:
documentation:
before_script:
# for opencv-python dependence
- if [[ "$TAG" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- if [[ "$CI_RUNNER_TAGS" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- !reference [.snippets, doc-prepare]
tests:
before_script:
# for opencv-python dependence
- if [[ "$TAG" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- if [[ "$CI_RUNNER_TAGS" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- !reference [.snippets, test-prepare]
conda-package:
before_script:
# for opencv-python dependence
- if [[ "$TAG" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- if [[ "$CI_RUNNER_TAGS" =~ "docker" ]]; then apt-get update && apt-get install -y libgl1-mesa-glx > /dev/null; fi
- !reference [.snippets, conda-prepare]
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