Skip to content

Commit eb93586

Browse files
committed
[CI] Build dstack-{shim,runner} for ARM64
Based on Git history, ACTIONSOS variable has never been used, most likely it was copied from the example. Part-of: #2101
1 parent b5768a6 commit eb93586

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ jobs:
164164
strategy:
165165
matrix:
166166
include:
167-
- { goos: "linux", goarch: "amd64", runson: "ubuntu-latest" }
167+
- { goos: "linux", goarch: "amd64" }
168+
- { goos: "linux", goarch: "arm64" }
168169
runs-on: ubuntu-latest
169170
steps:
170171
- uses: actions/checkout@v4
@@ -177,7 +178,6 @@ jobs:
177178
env:
178179
GOOS: ${{ matrix.goos }}
179180
GOARCH: ${{ matrix.goarch }}
180-
ACTIONSOS: ${{ matrix.runson }}
181181
CGO_ENABLED: 0
182182
run: |
183183
VERSION=$((${{ github.run_number }} + ${{ env.BUILD_INCREMENT }}))

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ jobs:
118118
strategy:
119119
matrix:
120120
include:
121-
- { goos: "linux", goarch: "amd64", runson: "ubuntu-latest" }
121+
- { goos: "linux", goarch: "amd64" }
122+
- { goos: "linux", goarch: "arm64" }
122123
runs-on: ubuntu-latest
123124
steps:
124125
- uses: actions/checkout@v4
@@ -131,7 +132,6 @@ jobs:
131132
env:
132133
GOOS: ${{ matrix.goos }}
133134
GOARCH: ${{ matrix.goarch }}
134-
ACTIONSOS: ${{ matrix.runson }}
135135
CGO_ENABLED: 0
136136
run: |
137137
VERSION=${GITHUB_REF#refs/tags/}

0 commit comments

Comments
 (0)