From 39b0f13363131d59b3fc711a38a3ac380791eaf3 Mon Sep 17 00:00:00 2001 From: Keisuke Izumiya Date: Fri, 8 Sep 2023 20:58:39 +0900 Subject: [PATCH] [bug] fix test --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a59eb20..4ebcf3c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,6 +40,11 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - run: nimble -y install -d + if: runner.os == 'Linux' + - run: nimble -y install -d "-p:-d:avx2=false" + if: runner.os == 'Windows' + - run: nimble -y install -d -p:-d:avx2=false -p:-d:bmi2=false + if: runner.os == 'macOS' - run: nim c -r ./tests/makeTest.nim if: runner.os == 'Linux'