Skip to content

Commit 4c59708

Browse files
committed
support for arm64
Signed-off-by: leecalcote <[email protected]>
1 parent 618c6b3 commit 4c59708

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ node_modules
1818
*.yaml
1919
openapi-jsonschema*
2020

21+
.vscode/*

Makefile

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
11
make: linux darwin windows
22

3-
darwin:
3+
#
4+
# ALL SUPPORT
5+
#
6+
7+
darwin: darwin-arm
48
nexe index.js -t darwin-x64 -o kubeopenapi-jsonschema-darwin -r "./node_modules/**/*"
59

6-
linux:
10+
linux: linux-arm
711
nexe index.js -t linux-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
812

9-
windows:
13+
windows: windows-arm
1014
nexe index.js -t windows-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
1115

12-
alpine:
16+
alpine: alpine-arm
1317
nexe index.js -t alpine-x64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
18+
19+
#
20+
# ARM SUPPORT
21+
#
22+
darwin-arm:
23+
nexe index.js -t darwin-arm64 -o kubeopenapi-jsonschema-darwin -r "./node_modules/**/*"
24+
25+
linux-arm:
26+
nexe index.js -t linux-arm64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
27+
28+
windows-arm:
29+
nexe index.js -t windows-arm64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
30+
31+
alpine-arm:
32+
nexe index.js -t alpine-arm64 -o kubeopenapi-jsonschema -r "./node_modules/**/*"
33+
34+
.PHONY: darwin darwin-arm alpine alpine-arm linux linux-arm

0 commit comments

Comments
 (0)