diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-10-14 23:16:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 23:16:46 +0300 |
commit | 252bf6c52e64a600d59218dfe3d4431487ad5cfd (patch) | |
tree | 8ddce90c79c150235224da8d89e3641f3dd5a79f /run_project_tests.py | |
parent | 4efb361d475871064057fd698dcd1b7ef5146332 (diff) | |
parent | efa55c9e1c19621290ddf226002feed9710185e8 (diff) | |
download | meson-252bf6c52e64a600d59218dfe3d4431487ad5cfd.zip meson-252bf6c52e64a600d59218dfe3d4431487ad5cfd.tar.gz meson-252bf6c52e64a600d59218dfe3d4431487ad5cfd.tar.bz2 |
Merge pull request #4340 from jon-turney/azure-pipelines
Add Azure pipelines CI
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 6474185..2445dd4 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -82,7 +82,7 @@ class AutoDeletedDir: failing_logs = [] print_debug = 'MESON_PRINT_TEST_OUTPUT' in os.environ -under_ci = not {'TRAVIS', 'APPVEYOR'}.isdisjoint(os.environ) +under_ci = 'CI' in os.environ do_debug = under_ci or print_debug no_meson_log_msg = 'No meson-log.txt found.' |