Skip to content

Commit 2d8fe73

Browse files
committed
CI: use warpbuild runners
1 parent a9a0668 commit 2d8fe73

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
bench:
1717
name: bench
18-
runs-on: ubuntu-latest
18+
runs-on: warp-ubuntu-latest-x64-8x
1919
timeout-minutes: 30
2020
steps:
2121
- uses: actions/checkout@v4

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
integration-test:
1818
name: integration tests
19-
runs-on: ubuntu-latest
19+
runs-on: warp-ubuntu-latest-x64-8x
2020
timeout-minutes: 30
2121
steps:
2222
- uses: actions/checkout@v4

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
fmt:
1414
name: fmt
15-
runs-on: ubuntu-latest
15+
runs-on: warp-ubuntu-latest-x64-8x
1616
timeout-minutes: 30
1717
steps:
1818
- uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
2424

2525
clippy:
2626
name: clippy
27-
runs-on: ubuntu-latest
27+
runs-on: warp-ubuntu-latest-x64-8x
2828
timeout-minutes: 30
2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/release-profile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
extract-version:
88
name: Extract version
9-
runs-on: ubuntu-latest
9+
runs-on: warp-ubuntu-latest-x64-8x
1010
outputs:
1111
VERSION: ${{ steps.extract_version.outputs.VERSION }}
1212
steps:
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
name: Build profiling binary
3636
needs: extract-version
37-
runs-on: ubuntu-latest
37+
runs-on: warp-ubuntu-latest-x64-8x
3838
steps:
3939
- uses: actions/checkout@v4
4040
- uses: rui314/setup-mold@v1

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
extract-version:
88
name: Extract version
9-
runs-on: ubuntu-latest
9+
runs-on: warp-ubuntu-latest-x64-8x
1010
outputs:
1111
VERSION: ${{ steps.extract_version.outputs.VERSION }}
1212
steps:
@@ -34,7 +34,7 @@ jobs:
3434
build:
3535
name: Build binary
3636
needs: extract-version
37-
runs-on: ubuntu-latest
37+
runs-on: warp-ubuntu-latest-x64-8x
3838
steps:
3939
- uses: actions/checkout@v4
4040
- uses: rui314/setup-mold@v1

.github/workflows/reproducible-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
name: build reproducible binaries
11-
runs-on: ubuntu-latest
11+
runs-on: warp-ubuntu-latest-x64-8x
1212
steps:
1313
- uses: actions/checkout@v5
1414
- uses: rui314/setup-mold@v1

.github/workflows/review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
review-with-tracking:
99
# Only run if comment contains @claude and is on a PR
1010
if: github.event.issue.pull_request && contains(github.event.comment.body, '@claude')
11-
runs-on: ubuntu-latest
11+
runs-on: warp-ubuntu-latest-x64-8x
1212
permissions:
1313
contents: read
1414
pull-requests: write

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
test:
1818
name: test workspace
19-
runs-on: ubuntu-latest
19+
runs-on: warp-ubuntu-latest-x64-8x
2020
timeout-minutes: 30
2121
steps:
2222
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)