From 3759e2f4295a9b0c18d94b99ce008d28263d201f Mon Sep 17 00:00:00 2001 From: clabby Date: Tue, 10 Sep 2024 11:43:19 -0400 Subject: [PATCH] feat(ci): Release prestate build image (#523) * feat(ci): Release prestate build image * Update .github/workflows/kona_fpp_docker.yaml * no multi-platform builds, just amd64 for now --- .github/workflows/kona_fpp_docker.yaml | 41 ++++++++++++++++++++++++ build/asterisc/asterisc-repro.dockerfile | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/kona_fpp_docker.yaml diff --git a/.github/workflows/kona_fpp_docker.yaml b/.github/workflows/kona_fpp_docker.yaml new file mode 100644 index 00000000..bc5b62fc --- /dev/null +++ b/.github/workflows/kona_fpp_docker.yaml @@ -0,0 +1,41 @@ +name: Build and Publish Kona FPP Images + +on: [workflow_dispatch, workflow_call] + +env: + REGISTRY: ghcr.io + +jobs: + build-fpp-images: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + strategy: + matrix: + fpvm: ["asterisc"] + env: + IMAGE_NAME: ${{ github.repository }}/kona-fpp-${{ matrix.fpvm }} + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Authenticate with container registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + - name: Build and Publish `kona-fpp-${{ matrix.fpvm }}` + uses: docker/build-push-action@v6 + with: + file: build/${{ matrix.fpvm }}/${{ matrix.fpvm }}-repro.dockerfile + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64 diff --git a/build/asterisc/asterisc-repro.dockerfile b/build/asterisc/asterisc-repro.dockerfile index beff907b..4440655c 100644 --- a/build/asterisc/asterisc-repro.dockerfile +++ b/build/asterisc/asterisc-repro.dockerfile @@ -14,7 +14,7 @@ ENV GO_VERSION=1.21.1 # Fetch go manually, rather than using a Go base image, so we can copy the installation into the final stage RUN curl -sL https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz -o go$GO_VERSION.linux-amd64.tar.gz && \ - tar -C /usr/local/ -xzvf go$GO_VERSION.linux-amd64.tar.gz + tar -C /usr/local/ -xzf go$GO_VERSION.linux-amd64.tar.gz ENV GOPATH=/go ENV PATH=/usr/local/go/bin:$GOPATH/bin:$PATH