summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSayed Adel <seiko@imavr.com>2022-12-07 02:05:13 +0200
committerSayed Adel <seiko@imavr.com>2022-12-07 02:13:36 +0200
commit1229e44e91df3d49b40ac0f8d9660d1417f6af21 (patch)
tree2cd954c119fa4d3087e478f79c4c35d76a524e37
parentcfad62fd73c2a0f3d0dc4d73989071e331898a09 (diff)
downloadnumpy-1229e44e91df3d49b40ac0f8d9660d1417f6af21.tar.gz
CI, SIMD: Add workflow to test default baseline features only
To ensure the sanity of the SIMD kernels on old x86 CPUs
-rw-r--r--.github/workflows/build_test.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index 515a92fee..fd38b04cc 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -130,6 +130,21 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }}
- uses: ./.github/actions
+ with_baseline_only:
+ needs: [smoke_test]
+ runs-on: ubuntu-latest
+ env:
+ CPU_DISPATCH: "none"
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ submodules: recursive
+ fetch-depth: 0
+ - uses: actions/setup-python@v4
+ with:
+ python-version: ${{ env.PYTHON_VERSION }}
+ - uses: ./.github/actions
+
without_avx512:
needs: [smoke_test]
runs-on: ubuntu-latest