Skip to content

Commit ddb5d53

Browse files
Change github actions to work with namespace runners (#277)
1 parent c24e1a8 commit ddb5d53

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
rustfmt:
11-
runs-on: ubuntu-latest
11+
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
1212
steps:
1313
- uses: actions/checkout@v4
1414
- run: rustup show
@@ -18,7 +18,7 @@ jobs:
1818
- run: cargo +nightly-2025-07-14 fmt --all -- --check
1919

2020
clippy:
21-
runs-on: ubuntu-latest
21+
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
2222
steps:
2323
- uses: actions/checkout@v4
2424
- run: rustup show
@@ -28,7 +28,7 @@ jobs:
2828
- run: cargo +nightly-2025-07-14 clippy --all -- -D warnings
2929

3030
tests:
31-
runs-on: ubuntu-latest
31+
runs-on: namespace-profile-large-ubuntu-24-04-amd64
3232
steps:
3333
- uses: actions/checkout@v4
3434
with:
@@ -55,7 +55,7 @@ jobs:
5555
RUSTFLAGS="-D warnings" cargo +nightly-2025-07-14 run --example run_program
5656
5757
udeps:
58-
runs-on: ubuntu-latest
58+
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
5959
steps:
6060
- uses: actions/checkout@v4
6161
- run: rustup show

.github/workflows/main_pr_ci_flow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919

2020
jobs:
2121
merge-gatekeeper:
22-
runs-on: ubuntu-24.04
22+
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
2323
# Restrict permissions of the GITHUB_TOKEN.
2424
# Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
2525
permissions:

.github/workflows/upload_artifacts_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
artifacts-push:
10-
runs-on: ubuntu-24.04
10+
runs-on: namespace-profile-medium-ubuntu-24-04-amd64
1111
steps:
1212
- uses: actions/checkout@v4
1313

0 commit comments

Comments
 (0)