From 3b97e7152dfcdb75d3f911b623f68470393f3fa4 Mon Sep 17 00:00:00 2001 From: ramin Date: Fri, 9 Feb 2024 11:09:42 +0000 Subject: [PATCH] ci: run unit tests on m1 mac runner vs macos-latest intel mac (#3155) These are now [generally available](https://github.blog/changelog/2024-01-30-github-actions-introducing-the-new-m1-macos-runner-available-to-open-source/) and these will a) be faster b) also be closer to developer machines also removed a commented out job in the ci_release.yml file that had been sitting dormant for a few years --- .github/workflows/ci_release.yml | 8 -------- .github/workflows/go-ci.yml | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index ad15a083bc..73572e4cef 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -138,11 +138,3 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} - - # TODO: permission issue, but not worth fixing as this should be refactored - # into the celestiaorg/.github repo, at which point any permission issues will - # be resolved. - # - # docker: - # needs: [release] - # uses: ./.github/workflows/docker-build.yml diff --git a/.github/workflows/go-ci.yml b/.github/workflows/go-ci.yml index 0a8807f212..9640d38fb9 100644 --- a/.github/workflows/go-ci.yml +++ b/.github/workflows/go-ci.yml @@ -71,7 +71,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest, macos-14] runs-on: ${{ matrix.os }} env: OS: ${{ matrix.os }}