-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use GH Actions and separate Dockerfiles
- Loading branch information
1 parent
ff2e950
commit 6e3d14d
Showing
5 changed files
with
230 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: build | ||
on: | ||
push: {} | ||
release: | ||
types: [published] | ||
workflow_dispatch: {} | ||
permissions: | ||
packages: write | ||
contents: write | ||
pull-requests: write | ||
id-token: write | ||
env: | ||
FOLDER: ./cmd | ||
# doesn't have an ECR by that name; EXCLUDE is regex and is '|' separated (e.g: a|b|c) | ||
EXCLUDE: s3-notify | ||
jobs: | ||
prepare: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
git-rev: ${{ steps.git-rev.outputs.git-rev }} | ||
matrix: ${{ steps.set.outputs.matrix }} | ||
steps: | ||
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | ||
- uses: GeoNet/yq@bbe305500687a5fe8498d74883c17f0f06431ac4 # master | ||
- id: git-rev | ||
env: | ||
GIT_SHA: ${{ github.sha }} | ||
run: | | ||
echo "git-rev=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
- id: set | ||
run: | | ||
echo "matrix=$(find $FOLDER -mindepth 1 -maxdepth 1 -type d | grep -Ewv "$EXCLUDE" - | xargs -n 1 basename | xargs | yq 'split(" ")|.[]|{"target":.,"folder":env(FOLDER)+"/"+.}' -ojson | jq -rcM -s '{"include":.}')" >> $GITHUB_OUTPUT | ||
- name: check output | ||
run: | | ||
jq . <<< '${{ steps.set.outputs.matrix }}' | ||
build: | ||
needs: prepare | ||
strategy: | ||
matrix: ${{ fromJSON(needs.prepare.outputs.matrix) }} | ||
uses: GeoNet/Actions/.github/workflows/reusable-docker-build.yml@main | ||
with: | ||
context: . | ||
dockerfile: ${{ fromJSON(toJSON(matrix)).folder }}/Dockerfile | ||
imageName: ${{ fromJSON(toJSON(matrix)).target }} | ||
platforms: linux/amd64 | ||
push: ${{ github.ref == 'refs/heads/main' }} | ||
tags: latest,git-${{ needs.prepare.outputs.git-rev }} | ||
registryOverride: 862640294325.dkr.ecr.ap-southeast-2.amazonaws.com | ||
aws-region: ap-southeast-2 | ||
aws-role-arn-to-assume: arn:aws:iam::862640294325:role/github-actions-geonet-ecr-push | ||
aws-role-duration-seconds: "3600" | ||
go-apps: | ||
uses: GeoNet/Actions/.github/workflows/reusable-go-apps.yml@main | ||
with: | ||
testSetup: | | ||
sudo apt-get -yq update | ||
sudo apt-get install -y xsltproc | ||
docker \ | ||
run -d \ | ||
-p 5432:5432 \ | ||
-e POSTGRES_PASSWORD=test \ | ||
-e POSTGRES_USER=fdsn_w \ | ||
-e POSTGRES_DB=fdsn \ | ||
docker.io/postgis/postgis:15-3.3-alpine | ||
echo "Waiting until Postgres is ready..." | ||
until nc -zv -n 1 127.0.0.1 5432; do | ||
sleep 1s | ||
done | ||
echo "Postgres is ready" | ||
psql postgresql://fdsn_w:[email protected]/fdsn --file=${ddl_dir}/drop-create.ddl |
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,40 @@ | ||
ARG BUILDER_IMAGE=ghcr.io/geonet/base-images/go:1.20 | ||
ARG RUNNER_IMAGE=ghcr.io/geonet/base-images/static:latest | ||
ARG RUN_USER=nobody | ||
# Only support image based on AlpineLinux | ||
FROM ${BUILDER_IMAGE} as builder | ||
|
||
# Project to build | ||
ARG BUILD=fdsn-holdings-consumer | ||
|
||
# Git commit SHA | ||
ARG GIT_COMMIT_SHA | ||
|
||
WORKDIR /repo | ||
COPY go.* *.go /repo | ||
RUN go mod download | ||
COPY internal /repo/internal | ||
COPY vendor /repo/vendor | ||
COPY cmd/$BUILD /repo/cmd/$BUILD | ||
|
||
# Set a bunch of go env flags | ||
ENV GOBIN /repo/gobin | ||
ENV GOFLAGS -mod=vendor | ||
ENV CGO_ENABLED=0 | ||
RUN go install -a -ldflags "-X main.Prefix=${BUILD}/${GIT_COMMIT_SHA} -extldflags -static" /repo/cmd/${BUILD} | ||
|
||
FROM ${RUNNER_IMAGE} | ||
# Export a port, default to 8080 | ||
ARG EXPOSE_PORT=8080 | ||
EXPOSE $EXPOSE_PORT | ||
ARG BUILD | ||
# Need to make this an env for it to be interpolated by the shell | ||
ENV TZ Pacific/Auckland | ||
ENV BUILD_BIN=${BUILD} | ||
# We have to make our binary have a fixed name, otherwise, we cannot run it without a shell | ||
COPY --from=builder /repo/gobin/${BUILD} /${BUILD} | ||
# Copy the assets | ||
ARG ASSET_DIR | ||
COPY ${ASSET_DIR} /assets | ||
USER nobody | ||
CMD ["/fdsn-holdings-consumer"] |
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,40 @@ | ||
ARG BUILDER_IMAGE=ghcr.io/geonet/base-images/go:1.20 | ||
ARG RUNNER_IMAGE=ghcr.io/geonet/base-images/static:latest | ||
ARG RUN_USER=nobody | ||
# Only support image based on AlpineLinux | ||
FROM ${BUILDER_IMAGE} as builder | ||
|
||
# Project to build | ||
ARG BUILD=fdsn-slink-db | ||
|
||
# Git commit SHA | ||
ARG GIT_COMMIT_SHA | ||
|
||
WORKDIR /repo | ||
COPY go.* *.go /repo | ||
RUN go mod download | ||
COPY internal /repo/internal | ||
COPY vendor /repo/vendor | ||
COPY cmd/$BUILD /repo/cmd/$BUILD | ||
|
||
# Set a bunch of go env flags | ||
ENV GOBIN /repo/gobin | ||
ENV GOFLAGS -mod=vendor | ||
ENV CGO_ENABLED=0 | ||
RUN go install -a -ldflags "-X main.Prefix=${BUILD}/${GIT_COMMIT_SHA} -extldflags -static" /repo/cmd/${BUILD} | ||
|
||
FROM ${RUNNER_IMAGE} | ||
# Export a port, default to 8080 | ||
ARG EXPOSE_PORT=8080 | ||
EXPOSE $EXPOSE_PORT | ||
ARG BUILD | ||
# Need to make this an env for it to be interpolated by the shell | ||
ENV TZ Pacific/Auckland | ||
ENV BUILD_BIN=${BUILD} | ||
# We have to make our binary have a fixed name, otherwise, we cannot run it without a shell | ||
COPY --from=builder /repo/gobin/${BUILD} /${BUILD} | ||
# Copy the assets | ||
ARG ASSET_DIR | ||
COPY ${ASSET_DIR} /assets | ||
USER nobody | ||
CMD ["/fdsn-slink-db"] |
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,40 @@ | ||
ARG BUILDER_IMAGE=ghcr.io/geonet/base-images/go:1.20 | ||
ARG RUNNER_IMAGE=ghcr.io/geonet/base-images/static:latest | ||
ARG RUN_USER=nobody | ||
# Only support image based on AlpineLinux | ||
FROM ${BUILDER_IMAGE} as builder | ||
|
||
# Project to build | ||
ARG BUILD=fdsn-ws-nrt | ||
|
||
# Git commit SHA | ||
ARG GIT_COMMIT_SHA | ||
|
||
WORKDIR /repo | ||
COPY go.* *.go /repo | ||
RUN go mod download | ||
COPY internal /repo/internal | ||
COPY vendor /repo/vendor | ||
COPY cmd/$BUILD /repo/cmd/$BUILD | ||
|
||
# Set a bunch of go env flags | ||
ENV GOBIN /repo/gobin | ||
ENV GOFLAGS -mod=vendor | ||
ENV CGO_ENABLED=0 | ||
RUN go install -a -ldflags "-X main.Prefix=${BUILD}/${GIT_COMMIT_SHA} -extldflags -static" /repo/cmd/${BUILD} | ||
|
||
FROM ${RUNNER_IMAGE} | ||
# Export a port, default to 8080 | ||
ARG EXPOSE_PORT=8080 | ||
EXPOSE $EXPOSE_PORT | ||
ARG BUILD | ||
# Need to make this an env for it to be interpolated by the shell | ||
ENV TZ Pacific/Auckland | ||
ENV BUILD_BIN=${BUILD} | ||
# We have to make our binary have a fixed name, otherwise, we cannot run it without a shell | ||
COPY --from=builder /repo/gobin/${BUILD} /${BUILD} | ||
# Copy the assets | ||
ARG ASSET_DIR | ||
COPY ${ASSET_DIR} /assets | ||
USER nobody | ||
CMD ["/fdsn-ws-nrt"] |
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,40 @@ | ||
ARG BUILDER_IMAGE=ghcr.io/geonet/base-images/go:1.20 | ||
ARG RUNNER_IMAGE=ghcr.io/geonet/base-images/static:latest | ||
ARG RUN_USER=nobody | ||
# Only support image based on AlpineLinux | ||
FROM ${BUILDER_IMAGE} as builder | ||
|
||
# Project to build | ||
ARG BUILD=fdsn-ws | ||
|
||
# Git commit SHA | ||
ARG GIT_COMMIT_SHA | ||
|
||
WORKDIR /repo | ||
COPY go.* *.go /repo | ||
RUN go mod download | ||
COPY internal /repo/internal | ||
COPY vendor /repo/vendor | ||
COPY cmd/$BUILD /repo/cmd/$BUILD | ||
|
||
# Set a bunch of go env flags | ||
ENV GOBIN /repo/gobin | ||
ENV GOFLAGS -mod=vendor | ||
ENV CGO_ENABLED=0 | ||
RUN go install -a -ldflags "-X main.Prefix=${BUILD}/${GIT_COMMIT_SHA} -extldflags -static" /repo/cmd/${BUILD} | ||
|
||
FROM ${RUNNER_IMAGE} | ||
# Export a port, default to 8080 | ||
ARG EXPOSE_PORT=8080 | ||
EXPOSE $EXPOSE_PORT | ||
ARG BUILD | ||
# Need to make this an env for it to be interpolated by the shell | ||
ENV TZ Pacific/Auckland | ||
ENV BUILD_BIN=${BUILD} | ||
# We have to make our binary have a fixed name, otherwise, we cannot run it without a shell | ||
COPY --from=builder /repo/gobin/${BUILD} /${BUILD} | ||
# Copy the assets | ||
ARG ASSET_DIR | ||
COPY ${ASSET_DIR} /assets | ||
USER nobody | ||
CMD ["/fdsn-ws"] |