allow override of image as a while and workflow creation #1
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: Iso Builder Test Worfklow | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- './training/iso-builder/**' | |
- '!training/iso-builder/README.md' | |
- '.github/workflows/iso_builder_test.yaml' | |
push: | |
branches: | |
- main | |
paths: | |
- './training/iso-builder/**' | |
- '!training/iso-builder/README.md' | |
- '.github/workflows/iso_builder_test.yaml' | |
workflow_dispatch: | |
env: | |
REGISTRY: quay.io | |
REGISTRY_ORG: ai-lab | |
jobs: | |
iso-builder-build-and-push: | |
if: "!contains(github.event.pull_request.labels.*.name, 'hold-tests')" | |
strategy: | |
matrix: | |
include: | |
- platforms: linux/amd64,linux/arm64 | |
parent_image_registry: quay.io | |
parent_image_org: centos-bootc | |
parent_image_name: centos-bootc | |
parent_image_tag: stream9 | |
iso_image_name: iso-builder-centos-bootc | |
iso_download_url: https://mirror.stream.centos.org/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-boot.iso | |
iso_name: CentOS-Stream-9-latest-x86_64-boot.iso | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Remove unnecessary files | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- uses: actions/[email protected] | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Generate an SSH key | |
id: ssh-keygen | |
run: | | |
ssh-keygen -t ed25519 -C "[email protected]" -N "" -f id_rsa | |
echo "sshpubkey=$(cat id_rsa.pub | xargs)" >> $GITHUB_OUTPUT | |
- name: Download the ISO | |
curl -sL ${{ matrix.iso_download_url }} -o ${{ matrix.iso_name }} | |
- name: Build Image | |
id: build_image | |
working-directory: ./training/iso-builder/ | |
run: | | |
make image FROM=${{ matrix.parent_image_registry }}/${{ matrix.parent_image_org }}/${{ matrix.parent_image_name }}:${{ matrix.parent_image_registry }} IMAGE_NAME=${{ matrix.iso_image_name }} IMAGE_TAG=${{ matrix.parent_image_tag }} | |
echo "embedded_image=$(echo '${{env.REGISTRY}}/${{env.REGISTRY_ORG}}/${{ matrix.iso_image_name }}:${{ matrix.parent_image_tag }}' | xargs)" >> $GITHUB_OUTPUT | |
- name: Run the Image | |
id: build_image | |
working-directory: ./training/iso-builder/ | |
run: | | |
make iso EMBED_IMAGE=${{ steps.build_image.outputs.embedded_image }} ORIGINAL_ISO=${{ matrix.iso_name }} SSHKEY=${{ steps.ssh-keygen.outputs.sshpubkey }} | |
- name: Publish Job Results to Slack | |
id: slack | |
if: always() | |
uses: slackapi/[email protected] | |
with: | |
payload: | | |
{ | |
"text": "${{ github.workflow }} workflow status: ${{ job.status }}\n${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |