Skip to content

Commit 8da6765

Browse files
build(actions): use linux/amd64, linux/arm64, sequoia, tahoe
1 parent 6038731 commit 8da6765

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,19 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [linux, darwin]
16-
arch: [amd64, arm64]
15+
include:
16+
- os: linux
17+
arch: amd64
18+
runner: ubuntu-latest
19+
- os: linux
20+
arch: arm64
21+
runner: ubuntu-latest
22+
- os: darwin
23+
arch: arm64
24+
runner: macos-15
25+
- os: darwin
26+
arch: arm64
27+
runner: macos-26
1728

1829
steps:
1930
- name: Checkout code
@@ -42,6 +53,10 @@ jobs:
4253
restore-keys: |
4354
${{ runner.os }}-go-
4455
45-
- name: Build chain and sidecar
56+
- name: Build chain
4657
run: |
47-
make build-sim-app && make build
58+
make build-sim-app
59+
60+
- name: Build sidecar
61+
run: |
62+
make build

0 commit comments

Comments
 (0)