File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 4747 sudo apt-get install -y gcc-aarch64-linux-gnu
4848 - name : " Compile binaries"
4949 run : make artifacts-linux
50+ - name : " Make misc artifacts"
51+ run : make artifacts-misc
5052 - name : " SHA256SUMS"
5153 run : |
5254 ( cd _artifacts; sha256sum *.tar.gz ) | tee /tmp/SHA256SUMS
Original file line number Diff line number Diff line change @@ -194,3 +194,5 @@ jobs:
194194 fetch-depth : 1
195195 - name : Make linux artifacts
196196 run : make artifacts-linux
197+ - name : Make misc artifacts
198+ run : make artifacts-misc
Original file line number Diff line number Diff line change 8686
8787.PHONY : clean
8888clean :
89- rm -rf _output
89+ rm -rf _output vendor
9090
9191.PHONY : artifacts-darwin
9292artifacts-darwin :
@@ -103,3 +103,9 @@ artifacts-linux:
103103 $(TAR ) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED ) -Linux-x86_64.tar.gz ./
104104 GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc make clean binaries
105105 $(TAR ) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED ) -Linux-aarch64.tar.gz ./
106+
107+ .PHONY : artifacts-misc
108+ artifacts-misc :
109+ mkdir -p _artifacts
110+ go mod vendor
111+ $(TAR ) -czf _artifacts/lima-$(VERSION_TRIMMED ) -go-mod-vendor.tar.gz go.mod go.sum vendor
You can’t perform that action at this time.
0 commit comments