diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 438a9ac49..e661c8359 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -70,6 +70,16 @@ jobs: echo "C:/Users/runneradmin/scoop/apps/mingw/current/bin" >> $env:GITHUB_PATH refreshenv + - name: Download OpenBLAS + run: | + curl -L -O https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x64.zip + mkdir OpenBLAS + Expand-Archive -Path .\OpenBLAS-0.3.21-x64.zip -DestinationPath .\OpenBLAS\ + mkdir ./src/main/resources/windowsDependencies + cp ./OpenBLAS/bin/libopenblas.dll ./src/main/resources/windowsDependencies/ + rm .\OpenBLAS-0.3.21-x64.zip + rm -r .\OpenBLAS\ + - name: Run build run: | ./gradlew.bat build diff --git a/src/main/resources/windowsDependencies/libopenblas.dll b/src/main/resources/windowsDependencies/libopenblas.dll deleted file mode 100644 index f5db4624f..000000000 Binary files a/src/main/resources/windowsDependencies/libopenblas.dll and /dev/null differ