From 2a29cdaf0148f33a583c6ca28556c89787f43988 Mon Sep 17 00:00:00 2001 From: Tigran Davtyan Date: Fri, 2 Feb 2024 06:40:31 +0400 Subject: [PATCH 1/3] added macos-14 runner to matrix --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c86814f3..5c86fae2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: - windows-latest - ubuntu-latest - macos-latest + - macos-14 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 From a8a58642a6a67e785ded9ae724fc0626013a7e25 Mon Sep 17 00:00:00 2001 From: Tigran Davtyan Date: Fri, 2 Feb 2024 07:52:48 +0400 Subject: [PATCH 2/3] removed target platform x64, should pickup automatically --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5c86fae2..a83b60d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: run: dotnet build --no-restore - name: Test - run: dotnet test --no-build --verbosity normal -- RunConfiguration.TargetPlatform=x64 + run: dotnet test --no-build --verbosity normal - name: Pack if: matrix.os == 'windows-latest' From 8a895764eac70089e7502087f1bba476d7219a84 Mon Sep 17 00:00:00 2001 From: Tigran Davtyan <65189378+TDavtyan-ST@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:26:03 +0400 Subject: [PATCH 3/3] pin macos-12 instead of the latest --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a83b60d9..427bb963 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: os: - windows-latest - ubuntu-latest - - macos-latest + - macos-12 - macos-14 runs-on: ${{ matrix.os }} steps: