We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6038731 commit 8da6765Copy full SHA for 8da6765
.github/workflows/build.yml
@@ -12,8 +12,19 @@ jobs:
12
13
strategy:
14
matrix:
15
- os: [linux, darwin]
16
- arch: [amd64, arm64]
+ include:
+ - os: linux
17
+ arch: amd64
18
+ runner: ubuntu-latest
19
20
+ arch: arm64
21
22
+ - os: darwin
23
24
+ runner: macos-15
25
26
27
+ runner: macos-26
28
29
steps:
30
- name: Checkout code
@@ -42,6 +53,10 @@ jobs:
42
53
restore-keys: |
43
54
${{ runner.os }}-go-
44
55
45
- - name: Build chain and sidecar
56
+ - name: Build chain
46
57
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