8000 Fix translation check and tweak continue but fail · kevincon/circuitpython@dcbba98 · GitHub
[go: up one dir, main page]

Skip to content

Commit dcbba98

Browse files
committed
Fix translation check and tweak continue but fail
1 parent 858a836 commit dcbba98

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
- bash: |
4242
sphinx-build -E -W -b html . _build/html
4343
displayName: 'Building docs'
44-
continueOnError: true
45-
- bash: |
46-
make check-translate
47-
displayName: 'Checking translations'
48-
continueOnError: true
44+
continueOnError: ErrorAndContinue
4945
- bash: |
5046
sudo apt-get install gettext
5147
displayName: 'Install native deps'
48+
- bash: |
49+
make check-translate
50+
displayName: 'Checking translations'
51+
continueOnError: ErrorAndContinue
5252
- bash: |
5353
make -C mpy-cross -j2
5454
displayName: 'Build mpy-cross'
@@ -62,22 +62,22 @@ jobs:
6262
MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1
6363
displayName: 'Test all'
6464
workingDirectory: 'tests'
65-
continueOnError: true
65+
continueOnError: ErrorAndContinue
6666
- bash: |
6767
MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 -d thread
6868
displayName: 'Test threads'
6969
workingDirectory: 'tests'
70-
continueOnError: true
70+
continueOnError: ErrorAndContinue
7171
- bash: |
7272
MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native
7373
displayName: 'Testing with native'
7474
workingDirectory: 'tests'
75-
continueOnError: true
75+
continueOnError: ErrorAndContinue
7676
- bash: |
7777
MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float
7878
displayName: 'Testing with mpy'
7979
workingDirectory: 'tests'
80-
continueOnError: true
80+
continueOnError: ErrorAndContinue
8181
- bash: |
8282
for exp in *.exp;
8383
do testbase=$(basename $exp .exp)
@@ -88,7 +88,7 @@ jobs:
8888
workingDirectory: 'tests'
8989
condition: failed()
9090
failOnStderr: false
91-
continueOnError: true
91+
continueOnError: ErrorAndContinue
9292
9393
- job: BuildARM
9494
pool:

0 commit comments

Comments
 (0)
0