Skip to content

Commit 1ac380f

Browse files
committed
Build Releases Script
This change adds a script that automates the creation of the executables for all supported platforms. After the build is complete, the executables are renamed to be unique by platform.
1 parent 35c3256 commit 1ac380f

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ _testmain.go
2222
*.exe
2323
*.test
2424
*.prof
25+
26+
java-buildpack-memory-calculator*

scripts/buildReleases

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
set -e -u
4+
5+
function build() {
6+
local type=$1
7+
local target="java-buildpack-memory-calculator-${type}"
8+
9+
GOOS=${type} go build -a && mv java-buildpack-memory-calculator ${target}
10+
echo "Built ${target}"
11+
}
12+
13+
build linux
14+
build darwin

scripts/runTests

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -e -u
44

0 commit comments

Comments
 (0)