From 57863e390d31cfb3b6edb8a980439d32710fb7f7 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 28 Nov 2022 00:39:22 +0100 Subject: [PATCH] .NET: use macOS 10.15 as a target instead of 10.13 macOS 10.15 has reached EOL, and doesn't even get security fixes from Apple any more. So, hopefully .NET will soon remove support for it as well. --- .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 7afd9f62..ebc50b9d 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -163,7 +163,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: configure - run: env CFLAGS="-Ofast -arch x86_64 -mmacosx-version-min=10.13" LDFLAGS="-arch x86_64 -mmacosx-version-min=10.13" ./configure --host=arm-apple-darwin20 --prefix=$PWD/.libsodium-build + run: env CFLAGS="-Ofast -arch x86_64 -mmacosx-version-min=10.15" LDFLAGS="-arch x86_64 -mmacosx-version-min=10.15" ./configure --host=arm-apple-darwin20 --prefix=$PWD/.libsodium-build - name: make run: make - name: make check @@ -180,7 +180,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: configure - run: env CFLAGS="-Ofast -arch arm64 -mmacosx-version-min=10.13" LDFLAGS="-arch arm64 -mmacosx-version-min=10.13" ./configure --host=arm-apple-darwin20 --prefix=$PWD/.libsodium-build + run: env CFLAGS="-Ofast -arch arm64 -mmacosx-version-min=10.15" LDFLAGS="-arch arm64 -mmacosx-version-min=10.15" ./configure --host=arm-apple-darwin20 --prefix=$PWD/.libsodium-build - name: make run: make - name: make install