diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-26 01:32:56 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-26 01:32:56 +0200 |
commit | 9acbd6278959ddf1f4c92d5d7fd87e47d2c27c20 (patch) | |
tree | 313bc22579c9104821d4554d034749e37189f745 /azure-pipelines.yml | |
parent | 5d751a25064065cce73eaa6c77b5b19b248c898a (diff) | |
download | meson-9acbd6278959ddf1f4c92d5d7fd87e47d2c27c20.zip meson-9acbd6278959ddf1f4c92d5d7fd87e47d2c27c20.tar.gz meson-9acbd6278959ddf1f4c92d5d7fd87e47d2c27c20.tar.bz2 |
Launch Meson via python3 so the binary name is correct.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fa24b32..186f77c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -83,7 +83,7 @@ jobs: - script: | set PATH=%CYGWIN_ROOT%\bin;%SYSTEMROOT%\system32 cp /usr/bin/python3.5 /usr/bin/python3 - env.exe -- python3.5 run_tests.py --backend=ninja + env.exe -- python3 run_tests.py --backend=ninja displayName: Run Tests - task: CopyFiles@2 condition: not(canceled()) |