-
Notifications
You must be signed in to change notification settings - Fork 2
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 #6 from gabriel-samfira/add-build-scripts
Update garm-provider-common and add build scripts
- Loading branch information
Showing
31 changed files
with
462 additions
and
31 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 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM docker.io/golang:alpine | ||
|
||
WORKDIR /root | ||
USER root | ||
|
||
RUN apk add musl-dev gcc libtool m4 autoconf g++ make libblkid util-linux-dev git linux-headers mingw-w64-gcc | ||
|
||
RUN wget http://musl.cc/aarch64-linux-musl-cross.tgz -O /tmp/aarch64-linux-musl-cross.tgz && \ | ||
tar --strip-components=1 -C /usr/local -xzf /tmp/aarch64-linux-musl-cross.tgz && \ | ||
rm /tmp/aarch64-linux-musl-cross.tgz | ||
|
||
ADD ./scripts/build-static.sh /build-static.sh | ||
RUN chmod +x /build-static.sh | ||
|
||
CMD ["/bin/sh"] |
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,6 +1,60 @@ | ||
SHELL := bash | ||
|
||
.PHONY: go-test | ||
ROOTDIR=$(dir $(abspath $(lastword $(MAKEFILE_LIST)))) | ||
GOPATH ?= $(shell go env GOPATH) | ||
GO ?= go | ||
|
||
IMAGE_TAG = garm-provider-build | ||
|
||
USER_ID=$(shell ((docker --version | grep -q podman) && echo "0" || id -u)) | ||
USER_GROUP=$(shell ((docker --version | grep -q podman) && echo "0" || id -g)) | ||
GARM_PROVIDER_NAME := garm-provider-oci | ||
|
||
default: build | ||
|
||
.PHONY : build build-static test install-lint-deps lint go-test fmt fmtcheck verify-vendor verify create-release-files release | ||
|
||
build: | ||
@$(GO) build . | ||
|
||
clean: ## Clean up build artifacts | ||
@rm -rf ./bin ./build ./release | ||
|
||
build-static: | ||
@echo Building | ||
docker build --tag $(IMAGE_TAG) . | ||
mkdir -p build | ||
docker run --rm -e GARM_PROVIDER_NAME=$(GARM_PROVIDER_NAME) -e USER_ID=$(USER_ID) -e USER_GROUP=$(USER_GROUP) -v $(PWD)/build:/build/output:z -v $(PWD):/build/$(GARM_PROVIDER_NAME):z $(IMAGE_TAG) /build-static.sh | ||
@echo Binaries are available in $(PWD)/build | ||
|
||
test: install-lint-deps verify go-test | ||
|
||
install-lint-deps: | ||
@$(GO) install github.com/golangci/golangci-lint/cmd/golangci-lint@latest | ||
|
||
lint: | ||
@golangci-lint run --timeout=8m --build-tags testing | ||
|
||
go-test: | ||
go test -v ./... $(TEST_ARGS) -timeout=15m -parallel=4 | ||
@$(GO) test -race -mod=vendor -tags testing -v $(TEST_ARGS) -timeout=15m -parallel=4 -count=1 ./... | ||
|
||
fmt: | ||
@$(GO) fmt $$(go list ./...) | ||
|
||
fmtcheck: | ||
@gofmt -l -s $$(go list ./... | sed -n 's/github.com\/cloudbase\/'$(GARM_PROVIDER_NAME)'\/\(.*\)/\1/p') | grep ".*\.go"; if [ "$$?" -eq 0 ]; then echo "gofmt check failed; please tun gofmt -w -s"; exit 1;fi | ||
|
||
verify-vendor: ## verify if all the go.mod/go.sum files are up-to-date | ||
$(eval TMPDIR := $(shell mktemp -d)) | ||
@cp -R ${ROOTDIR} ${TMPDIR} | ||
@(cd ${TMPDIR}/$(GARM_PROVIDER_NAME) && ${GO} mod tidy) | ||
@diff -r -u -q ${ROOTDIR} ${TMPDIR}/$(GARM_PROVIDER_NAME) >/dev/null 2>&1; if [ "$$?" -ne 0 ];then echo "please run: go mod tidy && go mod vendor"; exit 1; fi | ||
@rm -rf ${TMPDIR} | ||
|
||
verify: verify-vendor lint fmtcheck | ||
|
||
##@ Release | ||
create-release-files: | ||
./scripts/make-release.sh | ||
|
||
release: build-static create-release-files ## Create a release |
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/sh | ||
|
||
GARM_PROVIDER_NAME=${GARM_PROVIDER_NAME:-garm-provider-oci} | ||
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 | ||
|
||
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 | ||
|
||
# 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-oci} | ||
|
||
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 |
61 changes: 59 additions & 2 deletions
61
vendor/github.com/cloudbase/garm-provider-common/cloudconfig/templates.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.