Skip to content

Commit

Permalink
feat: attempt to switch to self-hosted runner (filecoin-project#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptonemo authored Sep 30, 2024
1 parent 216be1d commit f2fb713
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,47 +18,48 @@ env:

jobs:
check_clippy:
runs-on: ubuntu-24.04
# runs-on: ubuntu-24.04
runs-on: self-hosted
name: Clippy
steps:
- uses: actions/checkout@v4
- name: Run cargo clippy
run: cargo clippy --workspace --all-features -- -D warnings

check_fmt:
runs-on: ubuntu-24.04
runs-on: self-hosted
name: Checking fmt
steps:
- uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt --all -- --check

rustdoc:
runs-on: ubuntu-24.04
runs-on: self-hosted
name: Rustdoc
steps:
- uses: actions/checkout@v4
- name: Run rustdoc
run: cargo rustdoc --all-features -- -D warnings

build:
runs-on: ubuntu-24.04
runs-on: self-hosted
name: Release build
steps:
- uses: actions/checkout@v4
- name: Run cargo release build
run: cargo build --release

benches:
runs-on: ubuntu-24.04
runs-on: self-hosted
name: Run benchmarks
steps:
- uses: actions/checkout@v4
- name: Run benchmarks
run: cargo bench --all-targets

test:
runs-on: ubuntu-24.04
runs-on: self-hosted
name: Run cargo test
strategy:
matrix:
Expand Down

0 comments on commit f2fb713

Please sign in to comment.