diff --git a/.github/workflows/actions-ci.yml b/.github/workflows/actions-ci.yml index f74c29de48..393238e7a1 100644 --- a/.github/workflows/actions-ci.yml +++ b/.github/workflows/actions-ci.yml @@ -32,9 +32,12 @@ jobs: macOS-x86: if: github.repository_owner == 'aws' needs: [sanity-test-run] - runs-on: macos-latest + runs-on: macos-latest-large steps: - uses: actions/checkout@v2 + - name: Install dependencies + run: | + brew install ninja golang - name: Build ${{ env.PACKAGE_NAME }} run: | ./tests/ci/run_posix_tests.sh @@ -42,9 +45,12 @@ jobs: macOS-x86-FIPS: if: github.repository_owner == 'aws' needs: [sanity-test-run] - runs-on: macos-latest + runs-on: macos-latest-large steps: - uses: actions/checkout@v2 + - name: Install dependencies + run: | + brew install ninja golang - name: Build ${{ env.PACKAGE_NAME }} with FIPS mode run: | ./tests/ci/run_fips_tests.sh diff --git a/.github/workflows/integrations.yml b/.github/workflows/integrations.yml index e967d09b6e..17aabcb66c 100644 --- a/.github/workflows/integrations.yml +++ b/.github/workflows/integrations.yml @@ -46,7 +46,7 @@ jobs: - name: Install OS Dependencies run: | apt-get update - apt-get -y --no-install-recommends install cmake gcc g++ ninja-build golang make python3 python3-sphinx autoconf libtool pkg-config git libc++-dev + apt-get -y --no-install-recommends install cmake gcc g++ ninja-build golang make python3 python3-sphinx autoconf libtool pkg-config git libc++-dev python3-six - uses: actions/checkout@v3 - name: Run integration build run: |