diff options
-rw-r--r-- | .github/workflows/build_test.yml | 22 | ||||
-rw-r--r-- | azure-pipelines.yml | 38 |
2 files changed, 30 insertions, 30 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index fc772e6e8..bfd77ddb0 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -52,7 +52,7 @@ jobs: - uses: ./.github/actions basic: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest strategy: matrix: @@ -68,7 +68,7 @@ jobs: - uses: ./.github/actions debug: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-20.04 env: USE_DEBUG: 1 @@ -83,7 +83,7 @@ jobs: - uses: ./.github/actions blas64: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: NPY_USE_BLAS_ILP64: 1 @@ -98,7 +98,7 @@ jobs: - uses: ./.github/actions full: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-18.04 env: USE_WHEEL: 1 @@ -116,7 +116,7 @@ jobs: - uses: ./.github/actions benchmark: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: PYTHONOPTIMIZE: 2 @@ -137,7 +137,7 @@ jobs: - uses: ./.github/actions no_relaxed_strides: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: NPY_RELAXED_STRIDES_CHECKING: 0 @@ -154,7 +154,7 @@ jobs: - uses: ./.github/actions use_wheel: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: USE_WHEEL: 1 @@ -170,7 +170,7 @@ jobs: - uses: ./.github/actions no_array_func: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: NUMPY_EXPERIMENTAL_ARRAY_FUNCTION: 0 @@ -185,7 +185,7 @@ jobs: - uses: ./.github/actions no_openblas: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: BLAS: None @@ -203,7 +203,7 @@ jobs: - uses: ./.github/actions pypy37: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -216,7 +216,7 @@ jobs: - uses: ./.github/actions sdist: - needs: [smoke_test, lint] + needs: [smoke_test] runs-on: ubuntu-latest env: USE_SDIST: 1 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: |