Skip to content

Commit 99de801

Browse files
committed
Use python3.5 explicitly
1 parent ab21a1d commit 99de801

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

azure-pipelines.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ jobs:
2424
steps:
2525
- checkout: self
2626
submodules: recursive
27+
- task: UsePythonVersion@0
28+
inputs:
29+
versionSpec: '3.5'
30+
architecture: 'x64'
31+
- script: python -m pip install --upgrade pip setuptools wheel
32+
displayName: 'Install tools'
2733
- bash: |
2834
sudo apt-get install gettext
2935
displayName: 'Install native deps'
@@ -34,7 +40,6 @@ jobs:
3440
displayName: 'Install python deps'
3541
- bash: |
3642
gcc --version
37-
arm-none-eabi-gcc --version
3843
python3 --version
3944
displayName: 'Print versions'
4045
- bash: |
@@ -78,8 +83,11 @@ jobs:
7883
echo -e "\nFAILURE $testbase"
7984
diff -u $testbase.exp $testbase.out
8085
done
86+
displayName: "Dump test failure info"
8187
workingDirectory: 'tests'
8288
condition: failed()
89+
failOnStderr: false
90+
continueOnError: true
8391
8492
- job: BuildARM
8593
pool:

0 commit comments

Comments
 (0)