From f60f6e9af464d6e87d76a51cf5358b42c4ade532 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 11 Sep 2023 00:15:20 +0200 Subject: [PATCH] .NET: assume at least a Sandybridge CPU for x86_64 .NET packages --- .github/workflows/dotnet-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 868ab3a780..82ec1efdfa 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -34,7 +34,7 @@ jobs: - uses: actions/checkout@v3 - name: build run: | - zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu.2.17 -Dcpu=baseline + zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-gnu.2.17 -Dcpu=sandybridge - name: tests run: cd zig-out/bin && ./run.sh - uses: actions/upload-artifact@v3 @@ -114,7 +114,7 @@ jobs: - uses: actions/checkout@v3 - name: build run: | - zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl -Dcpu=baseline + zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl -Dcpu=sandybridge - name: tests run: | cd zig-out/bin && ./run.sh