Skip to content

Commit

Permalink
CI for other MacOS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Apr 29, 2024
1 parent c25dc2a commit ca535b9
Showing 1 changed file with 42 additions and 20 deletions.
62 changes: 42 additions & 20 deletions .github/workflows/actions-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,51 +32,73 @@ jobs:
macOS-x86:
if: github.repository_owner == 'aws'
needs: [sanity-test-run]
runs-on: macos-latest-large
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "macos-14-large"
- "macos-13-large"
- "macos-12-large"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- 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: macos-latest-large
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "macos-14-large"
- "macos-13-large"
- "macos-12-large"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- 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]
runs-on: macos-latest-xlarge
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "macos-14-xlarge"
- "macos-13-xlarge"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- 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-ARM-FIPS:
if: github.repository_owner == 'aws'
needs: [sanity-test-run]
runs-on: macos-latest-xlarge
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "macos-14-xlarge"
- "macos-13-xlarge"
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
brew install ninja golang
- 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
Expand Down

0 comments on commit ca535b9

Please sign in to comment.