diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-07-28 11:42:25 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2021-07-28 12:13:19 -0600 |
commit | 96789b0327817c379ebb81761c7bba096fef12cd (patch) | |
tree | b64c8be8defe72385fb8f0aab0cea00df341c66f /azure-pipelines.yml | |
parent | 214bf57e31ede659dda3a68e011c8ff45c2b9670 (diff) | |
download | numpy-96789b0327817c379ebb81761c7bba096fef12cd.tar.gz |
MAINT: Run CI tests even if linter fails.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e50ddc874..03571aed2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,25 +18,6 @@ stages: - stage: InitialTests jobs: - - job: Lint - condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest')) - pool: - vmImage: 'ubuntu-18.04' - steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.8' - addToPath: true - architecture: 'x64' - - script: >- - python -m pip install -r linter_requirements.txt - displayName: 'Install tools' - # pip 21.1 emits a pile of garbage messages to annoy users :) - # failOnStderr: true - - script: | - python tools/linter.py --branch origin/$(System.PullRequest.TargetBranch) - displayName: 'Run Lint Checks' - failOnStderr: true # Native build is based on gcc flag `-march=native` - job: Linux_baseline_native pool: @@ -66,6 +47,25 @@ stages: - stage: ComprehensiveTests jobs: + - job: Lint + condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest')) + pool: + vmImage: 'ubuntu-18.04' + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.8' + addToPath: true + architecture: 'x64' + - script: >- + python -m pip install -r linter_requirements.txt + displayName: 'Install tools' + # pip 21.1 emits a pile of garbage messages to annoy users :) + # failOnStderr: true + - script: | + python tools/linter.py --branch origin/$(System.PullRequest.TargetBranch) + displayName: 'Run Lint Checks' + failOnStderr: true - job: WindowsFast pool: |