-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from gabriel-samfira/update-build-scripts
Update build scripts and add GetVersion
- Loading branch information
Showing
7 changed files
with
135 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ jobs: | |
- run: go version | ||
|
||
- name: Run GARM Go Tests | ||
run: make go-test | ||
run: make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
bin/ | ||
release/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,48 @@ | ||
#!/bin/sh | ||
|
||
GARM_SOURCE="/build/garm-provider-azure" | ||
BIN_DIR="$GARM_SOURCE/bin" | ||
git config --global --add safe.directory "$GARM_SOURCE" | ||
GARM_PROVIDER_NAME=${GARM_PROVIDER_NAME:-garm-provider-azure} | ||
GARM_SOURCE="/build/$GARM_PROVIDER_NAME" | ||
git config --global --add safe.directory /build/$GARM_PROVIDER_NAME | ||
cd $GARM_SOURCE | ||
|
||
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
if [ ! -z "$GARM_REF" ] && [ "$GARM_REF" != "$CURRENT_BRANCH" ];then | ||
git checkout $GARM_REF | ||
fi | ||
|
||
cd $GARM_SOURCE | ||
|
||
[ ! -d "$BIN_DIR" ] && mkdir -p "$BIN_DIR" | ||
OUTPUT_DIR="/build/output" | ||
VERSION=$(git describe --tags --match='v[0-9]*' --dirty --always) | ||
BUILD_DIR="$OUTPUT_DIR/$VERSION" | ||
|
||
|
||
[ ! -d "$BUILD_DIR/linux" ] && mkdir -p "$BUILD_DIR/linux" | ||
[ ! -d "$BUILD_DIR/windows" ] && mkdir -p "$BUILD_DIR/windows" | ||
|
||
export CGO_ENABLED=1 | ||
USER_ID=${USER_ID:-$UID} | ||
USER_GROUP=${USER_GROUP:-$(id -g)} | ||
|
||
# Garm | ||
cd $GARM_SOURCE | ||
go build -mod vendor -o $BIN_DIR/garm-provider-azure -tags osusergo,netgo -ldflags "-linkmode external -extldflags '-static' -s -w" . | ||
|
||
chown $USER_ID:$USER_GROUP -R "$BIN_DIR" | ||
# Linux | ||
GOOS=linux GOARCH=amd64 go build -mod vendor \ | ||
-o $BUILD_DIR/linux/amd64/$GARM_PROVIDER_NAME \ | ||
-tags osusergo,netgo,sqlite_omit_load_extension \ | ||
-ldflags "-extldflags '-static' -s -w -X main.Version=$VERSION" . | ||
GOOS=linux GOARCH=arm64 CC=aarch64-linux-musl-gcc go build \ | ||
-mod vendor \ | ||
-o $BUILD_DIR/linux/arm64/$GARM_PROVIDER_NAME \ | ||
-tags osusergo,netgo,sqlite_omit_load_extension \ | ||
-ldflags "-extldflags '-static' -s -w -X main.Version=$VERSION" . | ||
|
||
# Windows | ||
GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-cc go build -mod vendor \ | ||
-o $BUILD_DIR/windows/amd64/$GARM_PROVIDER_NAME.exe \ | ||
-tags osusergo,netgo,sqlite_omit_load_extension \ | ||
-ldflags "-s -w -X main.Version=$VERSION" . | ||
|
||
git checkout $CURRENT_BRANCH || true | ||
chown $USER_ID:$USER_GROUP -R "$OUTPUT_DIR" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/bin/bash | ||
|
||
echo $GARM_REF | ||
GARM_PROVIDER_NAME=${GARM_PROVIDER_NAME:-garm-provider-azure} | ||
|
||
VERSION=$(git describe --tags --match='v[0-9]*' --dirty --always) | ||
RELEASE="$PWD/release" | ||
|
||
[ ! -d "$RELEASE" ] && mkdir -p "$RELEASE" | ||
|
||
if [ ! -z "$GARM_REF" ]; then | ||
VERSION=$(git describe --tags --match='v[0-9]*' --always $GARM_REF) | ||
fi | ||
|
||
echo $VERSION | ||
|
||
if [ ! -d "build/$VERSION" ]; then | ||
echo "missing build/$VERSION" | ||
exit 1 | ||
fi | ||
|
||
# Windows | ||
|
||
if [ ! -d "build/$VERSION/windows/amd64" ];then | ||
echo "missing build/$VERSION/windows/amd64" | ||
exit 1 | ||
fi | ||
|
||
if [ ! -f "build/$VERSION/windows/amd64/$GARM_PROVIDER_NAME.exe" ];then | ||
echo "missing build/$VERSION/windows/amd64/$GARM_PROVIDER_NAME.exe" | ||
exit 1 | ||
fi | ||
|
||
pushd build/$VERSION/windows/amd64 | ||
zip $GARM_PROVIDER_NAME-windows-amd64.zip $GARM_PROVIDER_NAME.exe | ||
sha256sum $GARM_PROVIDER_NAME-windows-amd64.zip > $GARM_PROVIDER_NAME-windows-amd64.zip.sha256 | ||
mv $GARM_PROVIDER_NAME-windows-amd64.zip $RELEASE | ||
mv $GARM_PROVIDER_NAME-windows-amd64.zip.sha256 $RELEASE | ||
popd | ||
|
||
# Linux | ||
OS_ARCHES=("amd64" "arm64") | ||
|
||
for arch in ${OS_ARCHES[@]};do | ||
if [ ! -f "build/$VERSION/linux/$arch/$GARM_PROVIDER_NAME" ];then | ||
echo "missing build/$VERSION/linux/$arch/$GARM_PROVIDER_NAME" | ||
exit 1 | ||
fi | ||
|
||
pushd build/$VERSION/linux/$arch | ||
tar czf $GARM_PROVIDER_NAME-linux-$arch.tgz $GARM_PROVIDER_NAME | ||
sha256sum $GARM_PROVIDER_NAME-linux-$arch.tgz > $GARM_PROVIDER_NAME-linux-$arch.tgz.sha256 | ||
mv $GARM_PROVIDER_NAME-linux-$arch.tgz $RELEASE | ||
mv $GARM_PROVIDER_NAME-linux-$arch.tgz.sha256 $RELEASE | ||
popd | ||
done |