From a2c576fe8200b6586369a00c291e7c4de5d7122b Mon Sep 17 00:00:00 2001 From: Justin Smith Date: Mon, 6 Oct 2025 14:05:46 -0400 Subject: [PATCH 1/2] Remove use of macos-13 (x86-64) --- .github/workflows/actions-ci.yml | 36 -------------------------------- 1 file changed, 36 deletions(-) diff --git a/.github/workflows/actions-ci.yml b/.github/workflows/actions-ci.yml index c76421a1f0..75206ab870 100644 --- a/.github/workflows/actions-ci.yml +++ b/.github/workflows/actions-ci.yml @@ -33,42 +33,6 @@ jobs: cmake -GNinja -Btest_build_dir ninja -C test_build_dir run_tests - macOS-x86: - if: github.repository_owner == 'aws' - needs: [sanity-test-run] - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: - - "macos-13" - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 - with: - go-version: ">=1.18" - - name: Build ${{ env.PACKAGE_NAME }} - run: | - ./tests/ci/run_posix_tests.sh - - macOS-x86-FIPS: - if: github.repository_owner == 'aws' - needs: [sanity-test-run] - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: - - "macos-13" - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 - with: - go-version: ">=1.18" - - name: Build ${{ env.PACKAGE_NAME }} with FIPS mode - run: | - ./tests/ci/run_fips_tests.sh - macOS-ARM: if: github.repository_owner == 'aws' needs: [sanity-test-run] From a81e1ef11079e3e7ad8b22c1b664eb9d829e4085 Mon Sep 17 00:00:00 2001 From: Justin Smith Date: Fri, 31 Oct 2025 13:13:27 -0400 Subject: [PATCH 2/2] Move to macos-15-intel --- .github/workflows/actions-ci.yml | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.github/workflows/actions-ci.yml b/.github/workflows/actions-ci.yml index 75206ab870..cbf37aa50e 100644 --- a/.github/workflows/actions-ci.yml +++ b/.github/workflows/actions-ci.yml @@ -33,6 +33,42 @@ jobs: cmake -GNinja -Btest_build_dir ninja -C test_build_dir run_tests + macOS-x86: + if: github.repository_owner == 'aws' + needs: [sanity-test-run] + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: + - "macos-15-intel" + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: ">=1.18" + - name: Build ${{ env.PACKAGE_NAME }} + run: | + ./tests/ci/run_posix_tests.sh + + macOS-x86-FIPS: + if: github.repository_owner == 'aws' + needs: [sanity-test-run] + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: + - "macos-15-intel" + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: ">=1.18" + - name: Build ${{ env.PACKAGE_NAME }} with FIPS mode + run: | + ./tests/ci/run_fips_tests.sh + macOS-ARM: if: github.repository_owner == 'aws' needs: [sanity-test-run]