diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac9fda7a174..e3514374063 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,13 @@ jobs: os: ubuntu-22.04-16core type: nightly upload_profraws: true + - name: MacOS + id: macos + os: macos-latest-xlarge + type: stable + # TODO: Currently only computing linux coverage, because the MacOS runners + # have files at a different path and thus comes out duplicated. + upload_profraws: false timeout-minutes: 90 steps: - uses: actions/checkout@v4 diff --git a/Justfile b/Justfile index 971b8117d9e..3142680bb94 100644 --- a/Justfile +++ b/Justfile @@ -2,7 +2,7 @@ # them at earliest convenience :) # Also in addition to this, the `nextest-integration` test is currently disabled on macos platform_excludes := if os() == "macos" { - "--exclude runtime-params-estimator --exclude near-network --exclude estimator-warehouse --exclude integration-tests" + "--exclude runtime-params-estimator --exclude estimator-warehouse --exclude integration-tests" } else if os() == "windows" { "--exclude node-runtime --exclude runtime-params-estimator --exclude near-network --exclude estimator-warehouse --exclude integration-tests" } else {