Skip to content

archutil: refactor generation and validation #7

archutil: refactor generation and validation

archutil: refactor generation and validation #7

Workflow file for this run

name: archutil
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- 'master'
- 'v[0-9]+.[0-9]+'
pull_request:
env:
SETUP_BUILDX_VERSION: "latest"
SETUP_BUILDKIT_IMAGE: "moby/buildkit:latest"
DESTDIR: "./bin"
jobs:
exits:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-20.04
steps:
-
name: Prepare
run: |
sudo apt-get update
sudo apt-get install -y cpuid
-
name: Checkout
uses: actions/checkout@v4
-
name: Show cpuinfo
run: |
cat /proc/cpuinfo
-
name: Show cpuid
run: |
cpuid
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
version: ${{ env.SETUP_BUILDX_VERSION }}
driver-opts: image=${{ env.SETUP_BUILDKIT_IMAGE }}
buildkitd-flags: --debug
-
name: Generate exits
uses: docker/bake-action@v4
with:
targets: archutil-exits
provenance: false
-
name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: archutil-exits-${{ matrix.os }}
path: ${{ env.DESTDIR }}/*
if-no-files-found: error