Skip to content

Commit d4492a7

Browse files
committed
Use cheaper parity-default runner for CI
1 parent 966eef3 commit d4492a7

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/check.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535

3636
check:
3737
name: Cargo check
38-
runs-on: ubuntu-latest
38+
# TODO: replace `parity-default` with `ubuntu-latest` when the repo becomes public.
39+
runs-on: parity-default
3940
needs: [set-image]
4041
container:
4142
image: ${{ needs.set-image.outputs.CI_IMAGE }}
@@ -61,7 +62,8 @@ jobs:
6162

6263
check-benchmarking:
6364
name: Cargo check (benchmarking)
64-
runs-on: ubuntu-latest
65+
# TODO: replace `parity-default` with `ubuntu-latest` when the repo becomes public.
66+
runs-on: parity-default
6567
needs: [set-image]
6668
container:
6769
image: ${{ needs.set-image.outputs.CI_IMAGE }}
@@ -82,8 +84,9 @@ jobs:
8284
8385
test:
8486
name: Test
85-
runs-on: ubuntu-latest
86-
timeout-minutes: 15
87+
# TODO: replace `parity-default` with `ubuntu-latest` when the repo becomes public.
88+
runs-on: parity-default
89+
timeout-minutes: 60
8790
needs: [set-image]
8891
container:
8992
image: ${{ needs.set-image.outputs.CI_IMAGE }}

0 commit comments

Comments
 (0)