diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4715de57c..5c6cc515a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -181,6 +181,7 @@ jobs: if: ${{ matrix.build == 'opencl' }} 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.LICENSE.txt -L https://github.com/CNugteren/CLBlast/raw/1.5.3/LICENSE mkdir $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')) { @@ -193,6 +194,7 @@ jobs: if: ${{ matrix.build == 'openblas' }} 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.LICENSE.txt -L https://github.com/xianyi/OpenBLAS/raw/v0.3.23/LICENSE mkdir $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 @@ -210,14 +212,14 @@ jobs: if: ${{ matrix.build == 'opencl' }} run: | 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 id: add_libopenblas_dll if: ${{ matrix.build == 'openblas' }} run: | 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 id: check_avx512f