diff options
author | DWesl <22566757+DWesl@users.noreply.github.com> | 2022-07-05 12:15:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 12:15:14 -0400 |
commit | 774a4c73f33a3babf1e6d072f3b0aa646aebd879 (patch) | |
tree | ad3a1f394b5b91eb4bcb366f96944d604d959d5d /.github/workflows | |
parent | 0f7eaf8971541e9f7e99c91b3a21e007f9d64c0c (diff) | |
download | numpy-774a4c73f33a3babf1e6d072f3b0aa646aebd879.tar.gz |
CI: Keep OpenBLAS on Cygwin
This was removed a few months ago to avoid failures with a previous version (#20654, #20660), necessitating the use of the Netlib reference BLAS instead (#20669). The Cygwin OpenBLAS implementation has updated to 0.3.20 since then (https://cygwin.com/cgi-bin2/package-grep.cgi?grep=openblas&arch=x86_64), so using OpenBLAS again should be fine.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cygwin.yml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index b77f7cd5c..a7638174e 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -37,13 +37,7 @@ jobs: - name: Set Windows PATH uses: egor-tensin/cleanup-path@v1 with: - 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" + dirs: 'C:\tools\cygwin\bin;C:\tools\cygwin\lib\lapack' - name: Verify that bash is Cygwin bash run: | command bash |