Skip to content

[ci] build arm64 images on arm64 runners #937

[ci] build arm64 images on arm64 runners

[ci] build arm64 images on arm64 runners #937

Workflow file for this run

name: CI
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
# schedule:
# - cron: "34 10 * * *"
push:
branches: ["main", "renovate/*"]
tags: ["*"]
pull_request:
branches: ["main"]
workflow_dispatch:
env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
MAIN_BRANCH: main
jobs:
check:
if: startsWith(github.ref, 'refs/tags/') != true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
- run: cp nanapi/example.local_settings.py nanapi/local_settings.py
- run: uv run --frozen pyright
- run: uv run --frozen ruff check nanapi/
if: always()
- uses: sarisia/actions-status-discord@v1
if: failure()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
strategy:
matrix:
config:
- gh_image: ubuntu-latest
arch: x86_64
- gh_image: ubuntu-24.04-arm
arch: aarch64
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Install the cosign tool except on PR
# https://github.com/sigstore/cosign-installer
# - name: Install cosign
# if: (github.event_name != 'pull_request') && !startsWith(github.ref, 'refs/heads/renovate')
# uses: sigstore/cosign-installer@v3
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: (github.event_name != 'pull_request') && !startsWith(github.ref, 'refs/heads/renovate')
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v6
with:
context: .
tags: ${{ matrix.config.arch }}
labels: ${{ steps.meta.outputs.labels }}
outputs: type=docker,dest=${{ runner.temp }}/${{ matrix.config.arch }}.tar
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.config.arch }}.tar
path: ${{ runner.temp }}/${{ matrix.config.arch }}.tar
# Sign the resulting Docker image digest except on PRs.
# This will only write to the public Rekor transparency log when the Docker
# repository is public to avoid leaking data. If you would like to publish
# transparency data even for private images, pass --force to cosign below.
# https://github.com/sigstore/cosign
# - name: Sign the published Docker image
# env:
# # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
# TAGS: ${{ steps.meta.outputs.tags }}
# DIGEST: ${{ steps.build-and-push.outputs.digest }}
# # This step uses the identity token to provision an ephemeral certificate
# # against the sigstore community Fulcio instance.
# run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
- uses: sarisia/actions-status-discord@v1
if: failure()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
publish_manifest:
runs-on: ubuntu-latest
# don’t run on PR or renovate commit
if: (github.event_name != 'pull_request') && !startsWith(github.ref, 'refs/heads/renovate')
needs:
- build
steps:
- uses: actions/checkout@v4
- name: Podman login
uses: redhat-actions/podman-login@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha
- name: Download artifact
uses: actions/download-artifact@v4
with:
pattern: "*.tar"
path: ${{ runner.temp }}
merge-multiple: true
- name: push manifest
run: |
image_base_raw=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
image_base=${image_base_raw@L}
image_base_sha=${image_base}:${{ github.sha }}
manifest=nanapi
podman manifest create ${manifest}
archs="x86_64 aarch64"
for arch in ${archs}; do
podman load --input ${{ runner.temp }}/${arch}.tar
podman tag ${arch} ${image_base_sha}-${arch}
podman push ${image_base_sha}-${arch}
podman manifest add ${manifest} ${image_base_sha}-${arch}
done
tags="${{ steps.meta.outputs.tags }}"
for tag in ${tags}; do
podman manifest push ${manifest} $tag
done
- uses: sarisia/actions-status-discord@v1
if: failure()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
deploy:
if: (github.event_name != 'pull_request') && !startsWith(github.ref, 'refs/heads/renovate')
needs:
- publish_manifest
runs-on: ubuntu-latest
permissions:
contents: write
actions: write
steps:
- name: Checkout nanak8s
uses: actions/checkout@v4
with:
repository: Japan7/nanak8s
token: ${{ secrets.NANAK8S_PAT }}
- name: Set deploy environment
id: deploy_env
run: |
if [[ "$GITHUB_REF" == "refs/tags/"* ]]; then
echo "::set-output name=name::prod"
echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
elif [[ "$GITHUB_REF" == "refs/heads/${MAIN_BRANCH}" ]]; then
echo "::set-output name=name::staging"
echo "::set-output name=tag::sha-${GITHUB_SHA::7}"
else
echo "::set-output name=name::dev"
echo "::set-output name=tag::sha-${GITHUB_SHA::7}"
fi
- name: Update nanak8s
run: |
yq e -i '(.environments.${{ steps.deploy_env.outputs.name }}.values[] | select(has("tag"))).tag = "${{ steps.deploy_env.outputs.tag }}"' apps/nanapi/environments.yaml
git add apps/nanapi/environments.yaml
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git commit -m "[CI] Update nanapi-${{ steps.deploy_env.outputs.name }} to ${{ steps.deploy_env.outputs.tag }}" -m "https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
git push
- uses: sarisia/actions-status-discord@v1
if: failure()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}