Skip to content

Commit

Permalink
Updated how we build our Docker images enabling multi-platform build
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed Jan 6, 2025
1 parent c0a7a10 commit 4747766
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 47 deletions.
74 changes: 38 additions & 36 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,23 @@ env:
IMAGE_NAME: ${{ github.repository }}

jobs:
build-vanilla:
runs-on: ubuntu-20.04
build-and-push-image:
runs-on: ubuntu-22.04
if: "${{ !startsWith(github.event.head_commit.message, 'GitBook: [#') }}"

outputs:
image: steps.meta.outputs.image
tags: steps.meta.outputs.tags

permissions:
contents: read
packages: write

strategy:
matrix:
go-version: [1.20.x]

outputs:
tags: ${{ steps.meta.outputs.tags }}

steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}

- name: Set up Go cache
uses: actions/cache@v3
id: cache-go
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand All @@ -45,54 +37,64 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Print branch name
id: extract_branch
shell: bash
run: |
echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
echo "##[set-output name=release_train;]$(echo ${GITHUB_REF#refs/heads/release/})"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Build
run: go build -v -ldflags "-X main.version=${{ github.event.ref }} -X main.commit=${{ github.sha }} -X main.date=$(date -u +%Y-%m-%dT%H:%MZ)" -o ./substreams-sink-sql ./cmd/substreams-sink-sql
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Generate docker tags/labels from github build context
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=tag
type=sha,prefix=,enable=true
type=sha,prefix=
type=raw,enable=${{ github.ref == 'refs/heads/develop' }},value=develop
type=raw,enable=${{ startsWith(github.ref, 'refs/heads/release/v') }},value=${{ steps.extract_branch.outputs.release_train }}
type=edge,branch=develop
flavor: |
latest=${{ startsWith(github.ref, 'refs/tags/') }}
- name: Extract version
id: extract-version
run: |
version=edge
commit_date="$(git show -s --format=%cI)"
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
version=${GITHUB_REF#refs/tags/}
fi
echo "VERSION=$version (Commit ${GITHUB_SHA::7}, Commit Date $commit_date)" >> "$GITHUB_OUTPUT"
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ steps.extract-version.outputs.VERSION }}
slack-notifications:
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
needs: [build-vanilla]
runs-on: ubuntu-20.04
needs: [build-and-push-image]
runs-on: ubuntu-22.04
steps:
- name: Slack notification
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/[email protected]
with:
args: |
:done: *${{ github.repository }}* Success building docker images from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-vanilla.outputs.tags, ' ') }}
${{ needs.build-bundle.outputs.image }}```
:done: *${{ github.repository }}* Success building docker images from ${{ github.ref_type }} _${{ github.ref_name }}_ (${{ github.actor }}) :sparkling_heart: ```${{ join(needs.build-and-push-image.outputs.tags, ' ') }}
${{ needs.build-and-push-image.outputs.image }}```
22 changes: 13 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
FROM ubuntu:20.04
FROM --platform=$BUILDPLATFORM golang:1.23-bullseye AS build

RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get -y install -y \
ca-certificates libssl1.1 vim htop iotop sysstat \
dstat strace lsof curl jq tzdata && \
rm -rf /var/cache/apt /var/lib/apt/lists/*
WORKDIR /src

ARG TARGETOS TARGETARCH VERSION=dev

RUN rm /etc/localtime && ln -snf /usr/share/zoneinfo/America/Montreal /etc/localtime && dpkg-reconfigure -f noninteractive tzdata
RUN --mount=target=. \
--mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg \
GOOS=$TARGETOS GOARCH=$TARGETARCH go build -ldflags "-X \"main.version=$VERSION\"" -o /app/substreams-sink-sql ./cmd/substreams-sink-sql

ADD /substreams-sink-sql /app/substreams-sink-sql
FROM ubuntu:22.04

RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get -y install -y ca-certificates libssl3

ENV PATH "$PATH:/app"
COPY --from=build /app/substreams-sink-sql /app/substreams-sink-sql

ENTRYPOINT ["/app/substreams-sink-sql"]
4 changes: 2 additions & 2 deletions cmd/substreams-sink-sql/generate_csv.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ var generateCsvCmd = Command(generateCsvE,
Amount of memory bytes to allocate to the buffered writer. If your data set is small enough that every is hold in memory, we are going to avoid
the local I/O operation(s) and upload accumulated content in memory directly to final storage location.
Ideally, you should set this as to about 80%% of RAM the process has access to. This will maximize amout of element in memory,
Ideally, you should set this as to about 80%% of RAM the process has access to. This will maximize amount of element in memory,
and reduce 'syscall' and I/O operations to write to the temporary file as we are buffering a lot of data.
This setting has probably the greatest impact on writting throughput.
This setting has probably the greatest impact on writing throughput.
Default value for the buffer is 4 MiB.
`))
Expand Down

0 comments on commit 4747766

Please sign in to comment.