aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-10-14 23:16:46 +0300
committerGitHub <noreply@github.com>2018-10-14 23:16:46 +0300
commit252bf6c52e64a600d59218dfe3d4431487ad5cfd (patch)
tree8ddce90c79c150235224da8d89e3641f3dd5a79f /run_tests.py
parent4efb361d475871064057fd698dcd1b7ef5146332 (diff)
parentefa55c9e1c19621290ddf226002feed9710185e8 (diff)
downloadmeson-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_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 1e03fa7..3445e30 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -261,7 +261,7 @@ def main():
cross = options.cross
backend, _ = guess_backend(options.backend, shutil.which('msbuild'))
# Running on a developer machine? Be nice!
- if not mesonlib.is_windows() and not mesonlib.is_haiku() and 'TRAVIS' not in os.environ:
+ if not mesonlib.is_windows() and not mesonlib.is_haiku() and 'CI' not in os.environ:
os.nice(20)
# Appveyor sets the `platform` environment variable which completely messes
# up building with the vs2010 and vs2015 backends.