Skip to content

Commit d39be7e

Browse files
committed
CI: use warpbuild runners
1 parent a98f6a9 commit d39be7e

File tree

8 files changed

+11
-22
lines changed

8 files changed

+11
-22
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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
jobs:
2121
extract-version:
2222
name: Extract version
23-
runs-on: ubuntu-latest
23+
runs-on: warp-ubuntu-latest-x64-8x
2424
outputs:
2525
VERSION: ${{ steps.extract_version.outputs.VERSION }}
2626
steps:
@@ -48,11 +48,7 @@ jobs:
4848
build:
4949
name: Build binary
5050
needs: extract-version
51-
if: ${{ github.event.inputs.build-binary == 'true' || github.event_name == 'push'}} # when manually triggered or version tagged
52-
runs-on: ubuntu-latest
53-
permissions:
54-
contents: write
55-
packages: write
51+
runs-on: warp-ubuntu-latest-x64-8x
5652
steps:
5753
- uses: actions/checkout@v4
5854
- name: Set up Docker Buildx

.github/workflows/reproducible-build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ on:
88
jobs:
99
build:
1010
name: build reproducible binaries
11-
runs-on: ${{ matrix.runner }}
12-
strategy:
13-
matrix:
14-
include:
15-
- runner: ubuntu-latest
16-
machine: machine-1
17-
- runner: ubuntu-22.04
18-
machine: machine-2
11+
runs-on: warp-ubuntu-latest-x64-8x
1912
steps:
2013
- uses: actions/checkout@v5
2114
- name: Set up Docker Buildx

.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)