From b92d07888c0872f53819f621b755a8f51f4f4fea Mon Sep 17 00:00:00 2001 From: Julian Eager Date: Thu, 19 Dec 2024 17:38:42 +0800 Subject: [PATCH] try on ci see what's failing --- .github/workflows/ci.yml | 7 +++++++ Justfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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 a4481acb213..e390a2c8889 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 integration-tests" + "--exclude runtime-params-estimator" } else if os() == "windows" { "--exclude node-runtime --exclude runtime-params-estimator --exclude near-network --exclude estimator-warehouse --exclude integration-tests" } else {