Skip to content

Commit ac389da

Browse files
committed
feat: attempt to switch to self-hosted runner
1 parent 216be1d commit ac389da

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,47 +18,48 @@ env:
1818

1919
jobs:
2020
check_clippy:
21-
runs-on: ubuntu-24.04
21+
# runs-on: ubuntu-24.04
22+
runs-on: self-hosted
2223
name: Clippy
2324
steps:
2425
- uses: actions/checkout@v4
2526
- name: Run cargo clippy
2627
run: cargo clippy --workspace --all-features -- -D warnings
2728

2829
check_fmt:
29-
runs-on: ubuntu-24.04
30+
runs-on: self-hosted
3031
name: Checking fmt
3132
steps:
3233
- uses: actions/checkout@v4
3334
- name: Run cargo fmt
3435
run: cargo fmt --all -- --check
3536

3637
rustdoc:
37-
runs-on: ubuntu-24.04
38+
runs-on: self-hosted
3839
name: Rustdoc
3940
steps:
4041
- uses: actions/checkout@v4
4142
- name: Run rustdoc
4243
run: cargo rustdoc --all-features -- -D warnings
4344

4445
build:
45-
runs-on: ubuntu-24.04
46+
runs-on: self-hosted
4647
name: Release build
4748
steps:
4849
- uses: actions/checkout@v4
4950
- name: Run cargo release build
5051
run: cargo build --release
5152

5253
benches:
53-
runs-on: ubuntu-24.04
54+
runs-on: self-hosted
5455
name: Run benchmarks
5556
steps:
5657
- uses: actions/checkout@v4
5758
- name: Run benchmarks
5859
run: cargo bench --all-targets
5960

6061
test:
61-
runs-on: ubuntu-24.04
62+
runs-on: self-hosted
6263
name: Run cargo test
6364
strategy:
6465
matrix:

0 commit comments

Comments
 (0)