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 47
47
sudo apt-get install -y gcc-aarch64-linux-gnu
48
48
- name : " Compile binaries"
49
49
run : make artifacts-linux
50
+ - name : " Make misc artifacts"
51
+ run : make artifacts-misc
50
52
- name : " SHA256SUMS"
51
53
run : |
52
54
( cd _artifacts; sha256sum *.tar.gz ) | tee /tmp/SHA256SUMS
Original file line number Diff line number Diff line change @@ -194,3 +194,5 @@ jobs:
194
194
fetch-depth : 1
195
195
- name : Make linux artifacts
196
196
run : make artifacts-linux
197
+ - name : Make misc artifacts
198
+ run : make artifacts-misc
Original file line number Diff line number Diff line change 86
86
87
87
.PHONY : clean
88
88
clean :
89
- rm -rf _output
89
+ rm -rf _output vendor
90
90
91
91
.PHONY : artifacts-darwin
92
92
artifacts-darwin :
@@ -103,3 +103,9 @@ artifacts-linux:
103
103
$(TAR ) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED ) -Linux-x86_64.tar.gz ./
104
104
GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc make clean binaries
105
105
$(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