diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-03-28 16:15:25 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-03-28 16:15:25 -0700 |
| commit | dcbba98c4ed46d387473455aa5b7e8f95348315e (patch) | |
| tree | a93579986227528ddcf6227c4137fa57c05daa35 | |
| parent | 858a8362b89766898bb75b9988926412ce51c38d (diff) | |
Fix translation check and tweak continue but fail
| -rw-r--r-- | azure-pipelines.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ef8d65d03..58d8cc0c3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,15 +41,15 @@ jobs: - bash: | sphinx-build -E -W -b html . _build/html displayName: 'Building docs' - continueOnError: true - - bash: | - make check-translate - displayName: 'Checking translations' - continueOnError: true + continueOnError: ErrorAndContinue - bash: | sudo apt-get install gettext displayName: 'Install native deps' - bash: | + make check-translate + displayName: 'Checking translations' + continueOnError: ErrorAndContinue + - bash: | make -C mpy-cross -j2 displayName: 'Build mpy-cross' - bash: | @@ -62,22 +62,22 @@ jobs: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 displayName: 'Test all' workingDirectory: 'tests' - continueOnError: true + continueOnError: ErrorAndContinue - bash: | MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 -d thread displayName: 'Test threads' workingDirectory: 'tests' - continueOnError: true + continueOnError: ErrorAndContinue - bash: | MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native displayName: 'Testing with native' workingDirectory: 'tests' - continueOnError: true + continueOnError: ErrorAndContinue - bash: | MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float displayName: 'Testing with mpy' workingDirectory: 'tests' - continueOnError: true + continueOnError: ErrorAndContinue - bash: | for exp in *.exp; do testbase=$(basename $exp .exp) @@ -88,7 +88,7 @@ jobs: workingDirectory: 'tests' condition: failed() failOnStderr: false - continueOnError: true + continueOnError: ErrorAndContinue - job: BuildARM pool: |
