diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2022-04-20 21:38:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-20 21:38:33 +0200 |
commit | f996a2b6270ff5d300aee7294f4d3d952e521cf8 (patch) | |
tree | 54fc06a14ded8d17ac424c1f96c37c03937f8186 /.github | |
parent | dc5aba5f04b7a59b49a6ffd4b635ba3d28de1469 (diff) | |
parent | 8c8610697ea784d7b7816bdb7655e82dfe2a4b8f (diff) | |
download | numpy-f996a2b6270ff5d300aee7294f4d3d952e521cf8.tar.gz |
Merge pull request #20669 from DWesl/cygwin-use-reference-blas
CI, TST: Run Cygwin CI with Netlib reference BLAS and re-enable linalg tests
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cygwin.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index bf568da98..b77f7cd5c 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -32,12 +32,18 @@ jobs: python38-devel python38-zipp python38-importlib-metadata python38-cython python38-pip python38-wheel python38-cffi python38-pytz python38-setuptools python38-pytest - python38-hypothesis liblapack-devel libopenblas + python38-hypothesis liblapack-devel gcc-fortran gcc-g++ git dash - name: Set Windows PATH uses: egor-tensin/cleanup-path@v1 with: - dirs: 'C:\tools\cygwin\bin;C:\tools\cygwin\lib\lapack' + dirs: 'C:\tools\cygwin\lib\lapack;C:\tools\cygwin\bin' + - name: Remove OpenBLAS + # Added to work around OpenBLAS bugs on AVX-512 + # Add libopenblas to the Cygwin install step when removing this step + # Should be possible after next Cygwin OpenBLAS update. + run: | + dash -c "/bin/rm -f /usr/bin/cygblas-0.dll" - name: Verify that bash is Cygwin bash run: | command bash |