From 42a795470d22dfddc4ddebb18a0cb4cd6ffce814 Mon Sep 17 00:00:00 2001 From: yoshoku Date: Sun, 14 Jan 2024 12:52:46 +0900 Subject: [PATCH] ci: add with-opt-dir option on windows --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c456444..13af7c7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,9 +37,11 @@ jobs: ruby-version: 3.2 bundler-cache: true - name: Install BLAS and LAPACK - run: pacman -S --noconfirm mingw-w64-ucrt-x86_64-openblas mingw-w64-ucrt-x86_64-lapack + run: | + pacman -S --noconfirm mingw-w64-ucrt-x86_64-openblas mingw-w64-ucrt-x86_64-lapack + pacman -Qi mingw-w64-ucrt-x86_64-openblas - name: Build - run: bundle exec rake compile + run: bundle exec rake compile -- --with-opt-dir="C:\msys64\ucrt64" - name: Run test run: bundle exec rake test build-mac: