not sure why this is failing
This commit is contained in:
parent
f8929309d7
commit
b0d9e4c322
1 changed files with 4 additions and 2 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -181,6 +181,7 @@ jobs:
|
||||||
if: ${{ matrix.build == 'opencl' }}
|
if: ${{ matrix.build == 'opencl' }}
|
||||||
run: |
|
run: |
|
||||||
curl.exe -o $env:RUNNER_TEMP/clblast.zip -L https://github.com/CNugteren/CLBlast/releases/download/1.5.3/CLBlast-1.5.3-Windows-x64.zip
|
curl.exe -o $env:RUNNER_TEMP/clblast.zip -L https://github.com/CNugteren/CLBlast/releases/download/1.5.3/CLBlast-1.5.3-Windows-x64.zip
|
||||||
|
curl.exe -o $env:RUNNER_TEMP/CLBlast.LICENSE.txt -L https://github.com/CNugteren/CLBlast/raw/1.5.3/LICENSE
|
||||||
mkdir $env:RUNNER_TEMP/clblast
|
mkdir $env:RUNNER_TEMP/clblast
|
||||||
tar.exe -xvf $env:RUNNER_TEMP/clblast.zip -C $env:RUNNER_TEMP/clblast
|
tar.exe -xvf $env:RUNNER_TEMP/clblast.zip -C $env:RUNNER_TEMP/clblast
|
||||||
foreach ($f in (gci -Recurse -Path "$env:RUNNER_TEMP/clblast" -Filter '*.cmake')) {
|
foreach ($f in (gci -Recurse -Path "$env:RUNNER_TEMP/clblast" -Filter '*.cmake')) {
|
||||||
|
@ -193,6 +194,7 @@ jobs:
|
||||||
if: ${{ matrix.build == 'openblas' }}
|
if: ${{ matrix.build == 'openblas' }}
|
||||||
run: |
|
run: |
|
||||||
curl.exe -o $env:RUNNER_TEMP/openblas.zip -L https://github.com/xianyi/OpenBLAS/releases/download/v0.3.23/OpenBLAS-0.3.23-x64.zip
|
curl.exe -o $env:RUNNER_TEMP/openblas.zip -L https://github.com/xianyi/OpenBLAS/releases/download/v0.3.23/OpenBLAS-0.3.23-x64.zip
|
||||||
|
curl.exe -o $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt -L https://github.com/xianyi/OpenBLAS/raw/v0.3.23/LICENSE
|
||||||
mkdir $env:RUNNER_TEMP/openblas
|
mkdir $env:RUNNER_TEMP/openblas
|
||||||
tar.exe -xvf $env:RUNNER_TEMP/openblas.zip -C $env:RUNNER_TEMP/openblas
|
tar.exe -xvf $env:RUNNER_TEMP/openblas.zip -C $env:RUNNER_TEMP/openblas
|
||||||
Rename-Item $env:RUNNER_TEMP/openblas/lib/libopenblas.lib openblas.lib
|
Rename-Item $env:RUNNER_TEMP/openblas/lib/libopenblas.lib openblas.lib
|
||||||
|
@ -210,14 +212,14 @@ jobs:
|
||||||
if: ${{ matrix.build == 'opencl' }}
|
if: ${{ matrix.build == 'opencl' }}
|
||||||
run: |
|
run: |
|
||||||
cp $env:RUNNER_TEMP/clblast/lib/clblast.dll ./build/bin/Release
|
cp $env:RUNNER_TEMP/clblast/lib/clblast.dll ./build/bin/Release
|
||||||
curl.exe -L https://github.com/CNugteren/CLBlast/raw/1.5.3/LICENSE -o ./build/bin/Release/CLBlast.LICENSE.txt
|
cp $env:RUNNER_TEMP/CLBlast.LICENSE.txt ./build/bin/Release
|
||||||
|
|
||||||
- name: Add libopenblas.dll
|
- name: Add libopenblas.dll
|
||||||
id: add_libopenblas_dll
|
id: add_libopenblas_dll
|
||||||
if: ${{ matrix.build == 'openblas' }}
|
if: ${{ matrix.build == 'openblas' }}
|
||||||
run: |
|
run: |
|
||||||
cp $env:RUNNER_TEMP/openblas/bin/libopenblas.dll ./build/bin/Release
|
cp $env:RUNNER_TEMP/openblas/bin/libopenblas.dll ./build/bin/Release
|
||||||
curl.exe -L https://github.com/xianyi/OpenBLAS/raw/v0.3.23/LICENSE -o ./build/bin/Release/OpenBLAS.LICENSE.txt
|
cp $env:RUNNER_TEMP/OpenBLAS.LICENSE.txt ./build/bin/Release
|
||||||
|
|
||||||
- name: Check AVX512F support
|
- name: Check AVX512F support
|
||||||
id: check_avx512f
|
id: check_avx512f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue