diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-06-04 10:04:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-06-04 13:33:12 +0300 |
commit | a114b38663160a1e325884f349a5c5727229177b (patch) | |
tree | 047484d582a4ce2399d7b2095209c282e6fc2592 /tools/ci | |
parent | 7cad663943345f7686f049b7022f306f0f2ab577 (diff) | |
download | ManaVerse-a114b38663160a1e325884f349a5c5727229177b.tar.gz ManaVerse-a114b38663160a1e325884f349a5c5727229177b.tar.bz2 ManaVerse-a114b38663160a1e325884f349a5c5727229177b.tar.xz ManaVerse-a114b38663160a1e325884f349a5c5727229177b.zip |
Update runtests.sh for cirrus ci
Diffstat (limited to 'tools/ci')
-rwxr-xr-x | tools/ci/scripts/runtests.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/ci/scripts/runtests.sh b/tools/ci/scripts/runtests.sh index 96e5b69f5..60b12abb9 100755 --- a/tools/ci/scripts/runtests.sh +++ b/tools/ci/scripts/runtests.sh @@ -1,8 +1,10 @@ #!/usr/bin/env bash if [[ ${CI_RUNNER_TAGS} != *"docker"* ]]; then - echo "Running from shell. Skipping run tests $*" - exit 0 + if [[ ${CIRRUS_CI} != "true" ]]; then + echo "Running from shell. Skipping run tests $*" + exit 0 + fi fi export SDL_VIDEODRIVER="dummy" |