Skip to content

Commit

Permalink
add: builder
Browse files Browse the repository at this point in the history
  • Loading branch information
k1m0ch1 committed Mar 20, 2022
1 parent d5d1634 commit 92c7c86
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
12 changes: 12 additions & 0 deletions .github/builder/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

GOOS=windows GOARCH=amd64 go build -o .bin/axolotl-amd64.exe .
GOOS=windows GOARCH=386 go build -o .bin/axolotl-386.exe .
# 64-bit
GOOS=darwin GOARCH=amd64 go build -o .bin/axolotl-amd64-darwin .
# 32-bit
GOOS=darwin GOARCH=386 go build -o .bin/axolotl-386-darwin .
# 64-bit
GOOS=linux GOARCH=amd64 go build -o .bin/axolotl-amd64-linux .
# 32-bit
GOOS=linux GOARCH=386 go build -o .bin/axolotl-386-linux .
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
*.yml
*.yml
hosts
poc
reports
vulns
outputs
config.yml
.bin

0 comments on commit 92c7c86

Please sign in to comment.