Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): Release prestate build image #523

Merged
merged 3 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/kona_fpp_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
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: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
refcell marked this conversation as resolved.
Show resolved Hide resolved
- 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,linux/arm64
clabby marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion build/asterisc/asterisc-repro.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down