We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 572843b commit a8abceaCopy full SHA for a8abcea
.gitignore
@@ -1,5 +1,6 @@
1
/tags
2
/.vscode
3
+/_release
4
.DS_Store
5
6
__pycache__
release.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+set -euxo pipefail
+mkdir -p _release
+rm -f _release/*
7
8
+RAYCI_OS="$(go env GOOS)"
9
+RAYCI_ARCH="$(go env GOARCH)"
10
11
+go build -trimpath -o "_release/rayci-${RAYCI_OS}-${RAYCI_ARCH}" .
12
+go build -trimpath -o "_release/wanda-${RAYCI_OS}-${RAYCI_ARCH}" ./wanda/wanda
0 commit comments