We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab21a1d commit 99de801Copy full SHA for 99de801
azure-pipelines.yml
@@ -24,6 +24,12 @@ jobs:
24
steps:
25
- checkout: self
26
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'
33
- bash: |
34
sudo apt-get install gettext
35
displayName: 'Install native deps'
@@ -34,7 +40,6 @@ jobs:
40
displayName: 'Install python deps'
41
36
42
gcc --version
37
- arm-none-eabi-gcc --version
38
43
python3 --version
39
44
displayName: 'Print versions'
45
@@ -78,8 +83,11 @@ jobs:
78
83
echo -e "\nFAILURE $testbase"
79
84
diff -u $testbase.exp $testbase.out
80
85
done
86
+ displayName: "Dump test failure info"
81
87
workingDirectory: 'tests'
82
88
condition: failed()
89
+ failOnStderr: false
90
+ continueOnError: true
91
92
- job: BuildARM
93
pool:
0 commit comments