We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de9f354 commit 8606f92Copy full SHA for 8606f92
Makefile
@@ -133,6 +133,12 @@ artifacts-linux:
133
GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc make clean binaries
134
$(TAR) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED)-Linux-aarch64.tar.gz ./
135
136
+.PHONY: artifacts-windows
137
+artifacts-windows:
138
+ mkdir -p _artifacts
139
+ GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc make clean binaries
140
+ $(TAR) -C _output/ -czvf _artifacts/lima-$(VERSION_TRIMMED)-Windows-x86_64.tar.gz ./
141
+
142
.PHONY: artifacts-misc
143
artifacts-misc:
144
mkdir -p _artifacts
0 commit comments