File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 52
52
- uses : actions/setup-go@v5
53
53
with :
54
54
go-version : 1.22.x
55
+ - name : Install gcc-x86-64-linux-gnu
56
+ run : |
57
+ sudo apt-get update
58
+ sudo apt-get install -y gcc-x86-64-linux-gnu
55
59
- name : Install gcc-aarch64-linux-gnu
56
60
run : |
57
61
sudo apt-get update
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ artifacts-darwin:
268
268
.PHONY : artifacts-linux
269
269
artifacts-linux :
270
270
mkdir -p _artifacts
271
- GOOS=linux GOARCH=amd64 make clean binaries
271
+ GOOS=linux GOARCH=amd64 CC=x86_64-linux-gnu-gcc make clean binaries
272
272
$(TAR ) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED ) -Linux-x86_64.tar.gz ./
273
273
GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc make clean binaries
274
274
$(TAR ) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED ) -Linux-aarch64.tar.gz ./
You can’t perform that action at this time.
0 commit comments