Old version (4.1.x) with new output QE interface (#5) #15
Workflow file for this run
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
--- | |
name: Build images and run tests and publish | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- support/** | |
tags: | |
- "v*" | |
workflow_dispatch: | |
env: | |
BUILDKIT_PROGRESS: plain | |
FORCE_COLOR: 1 | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency | |
concurrency: | |
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
outputs: | |
image: ${{ steps.bake_metadata.outputs.image }} | |
steps: | |
- name: Checkout Repo ⚡️ | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
if: ${{ inputs.platforms != 'linux/amd64' }} | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry 🔑 | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- uses: crazy-max/ghaction-github-runtime@v3 | |
- name: Build and upload to ghcr.io 📤 | |
id: build-upload | |
uses: docker/bake-action@v4 | |
with: | |
push: true | |
# Using provenance to disable default attestation so it will build only desired images: | |
# https://github.com/orgs/community/discussions/45969 | |
provenance: false | |
set: | | |
*.platform=linux/amd64 | |
*.output=type=registry,name-canonical=true,push-by-digest=true | |
*.cache-from=type=gha | |
*.cache-to=type=gha,mode=max | |
files: | | |
docker-bake.hcl | |
build.json | |
.github/workflows/env.hcl | |
- name: Set output variables | |
id: bake_metadata | |
run: | | |
.github/workflows/extract-image-name.sh | tee -a "${GITHUB_OUTPUT}" | |
env: | |
BAKE_METADATA: ${{ steps.build-upload.outputs.metadata }} | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: build | |
steps: | |
- name: Checkout Repo ⚡️ | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry 🔑 | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run container checking libraries exist in the container | |
run: | | |
docker run --rm ${{ needs.build.outputs.image }} /bin/bash -c "which atompaw" >> /tmp/cat-output.txt | |
docker run --rm ${{ needs.build.outputs.image }} /bin/bash -c "which graphatom" >> /tmp/cat-output.txt | |
if cat /tmp/cat-output.txt | grep -q "/usr/local/bin/atompaw"; then | |
echo "atompaw found" | |
else | |
echo "atompaw not found" | |
exit 1 | |
fi | |
if cat /tmp/cat-output.txt | grep -q "/usr/local/bin/graphatom"; then | |
echo "graphatom found" | |
else | |
echo "graphatom not found" | |
exit 1 | |
fi | |
publish: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
needs: [build] | |
if: >- | |
github.repository == 'pspgen/atompaw' | |
&& (github.ref_type == 'tag' || github.ref_name == 'main') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry 🔑 | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Read build variables | |
id: build_vars | |
run: | | |
vars=$(cat build.json | jq -c '[.variable | to_entries[] | {"key": .key, "value": .value.default}] | from_entries') | |
echo "vars=$vars" | tee -a "${GITHUB_OUTPUT}" | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
env: ${{ fromJSON(steps.build_vars.outputs.vars) }} | |
with: | |
images: ghcr.io/${{ github.repository_owner }}/atompaw | |
tags: | | |
type=edge,enable={{is_default_branch}} | |
type=raw,value={{tag}},enable=${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | |
type=raw,value=atompaw-${{ env.ATOMPAW_VERSION }},enable=${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }} | |
type=match,pattern=v(\d{4}\.\d{4}(-.+)?),group=1 | |
- name: Push tags | |
uses: akhilerm/[email protected] | |
with: | |
src: ${{ needs.build.outputs.image }} | |
dst: ${{ steps.meta.outputs.tags }} |