From 8b071a7224434b629b072873e37d9a477da90d5d Mon Sep 17 00:00:00 2001 From: hadashiA Date: Fri, 18 Aug 2023 18:25:12 +0900 Subject: [PATCH] [ci] Add test env to disable HW intrinsic --- .github/workflows/build-debug.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 127d02b..259ecc7 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -20,9 +20,11 @@ jobs: 3.1.x 5.0.x 6.0.x + 7.0.x - run: dotnet build -c Debug - - run: dotnet test -c Debug - + - run: dotnet test -c Debug --no-build + - run: dotnet test -c Debug --no-build --environment "COMPlus_EnableHWIntrinsic=0;COMPlus_EnableSSE2=0" + - run: dotnet test -c Debug --no-build --environment "COMPlus_EnableSSE2=0" build-unity: if: "((github.event_name == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:'))" strategy: