diff options
author | Sayed Adel <seiko@imavr.com> | 2022-06-16 14:24:45 +0200 |
---|---|---|
committer | Sayed Adel <seiko@imavr.com> | 2022-06-16 21:36:26 +0200 |
commit | 24d937546d09e5b7ed9b1075d52dfe63a0acd167 (patch) | |
tree | e9e743076da4eeb01bfa908e1df307c38c72a379 /.github | |
parent | 88d373cc5734e8cf47253f98c94403f124f1c017 (diff) | |
download | numpy-24d937546d09e5b7ed9b1075d52dfe63a0acd167.tar.gz |
CI: add workflow for non-optimized builds
since the support of zsystem, all current overflows have SIMD
support which leaves no room for testing pure C code that runs
on non-supported architectures.
note: smoke test no longer build with SIMD support
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index c8f542123..d6a2b3d94 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -45,6 +45,8 @@ jobs: smoke_test: if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]')" runs-on: ubuntu-latest + env: + WITHOUT_SIMD: 1 steps: - uses: actions/checkout@v3 with: @@ -73,6 +75,21 @@ jobs: python-version: ${{ matrix.python-version }} - uses: ./.github/actions + without_opt: + needs: [smoke_test] + runs-on: ubuntu-latest + env: + WITHOUT_OPT: 1 + steps: + - uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 + - uses: actions/setup-python@v3 + with: + python-version: ${{ env.PYTHON_VERSION }} + - uses: ./.github/actions + debug: needs: [smoke_test] runs-on: ubuntu-20.04 |