diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2023-04-24 14:59:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-24 14:59:09 -0400 |
| commit | e90c836b3e334ee0a47682282ff94c42519fe2d5 (patch) | |
| tree | 066e518a9ca2eae3a245e03be5b7d1a1222ee1ff /.github/workflows | |
| parent | 18a18cd4fbf3258e0d0ca7eb0b9f9e9230ac26de (diff) | |
| parent | 30c94782447eec20e1a8e7d089cd20a92c46c1ee (diff) | |
| download | numpy-e90c836b3e334ee0a47682282ff94c42519fe2d5.tar.gz | |
Merge pull request #23655 from r-devulap/ci-spr-enable
CI: Enable CI on gcc 12.x on Intel SPR
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_test.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 9548bed6b..e6b8c503f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -431,7 +431,6 @@ jobs: run: sde -icl -- python runtests.py -n -v -- -k test_simd intel_spr_sde_test: - if: ${{ false }} # disable for now needs: [smoke_test] runs-on: ubuntu-latest steps: @@ -456,6 +455,9 @@ jobs: export CC=/usr/bin/gcc-12 export CXX=/usr/bin/g++-12 python -m pip install -e . + - name: Show config + run: | + python -c "import numpy as np; np.show_config()" # Run only a few tests, running everything in an SDE takes a long time # Using pytest directly, unable to use python runtests.py -n -t ... - name: Run linalg/ufunc/umath tests |
