Skip to content

Commit

Permalink
ci: use pl self-hosted runners for test (#1381)
Browse files Browse the repository at this point in the history
* ci: use pl self-hosted runners for test

* ci: install rust on self-hosted

* ci: run coverage on self-hosted

* ci: use bigger self-hosted runners
  • Loading branch information
galargh authored Oct 26, 2023
1 parent 9b147c1 commit 0f202bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@ jobs:
run: make check

test:
runs-on: ubuntu-latest
runs-on: ${{ fromJSON(github.repository == 'filecoin-project/builtin-actors' && '["self-hosted", "linux", "x64", "4xlarge"]' || '"ubuntu-latest"') }}
steps:
- name: Checking out
uses: actions/checkout@v3
- if: env.RUNNER_ENVIRONMENT != 'github-hosted'
uses: dtolnay/rust-toolchain@stable
- name: Running tests
run: |
cargo test --locked --all --no-fail-fast --exclude=fil_builtin_actors_bundle
Expand Down

0 comments on commit 0f202bb

Please sign in to comment.