Skip to content

chore: add crc-builder spec #9

chore: add crc-builder spec

chore: add crc-builder spec #9

name: snc-runner-oci-builder
on:
push:
tags: [ '*' ]
paths: [ '.github/workflows/snc-runner/release-info' ]
pull_request:
branches: [ main ]
paths: [ 'snc-runner/**', '.github/workflows/snc-runner*' ]
jobs:
build:
name: build
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build image for PR
if: ${{ github.event_name == 'pull_request' }}
env:
SNC_RUNNER: ghcr.io/crc-org/ci-snc-runner
SNC_RUNNER_V: pr-${{ github.event.number }}
run: |
make snc-runner-oci-build
SNC_RUNNER_SAVE=snc-runner make snc-runner-oci-save
echo "SNC_RUNNER=${SNC_RUNNER}" >> "$GITHUB_ENV"
echo "SNC_RUNNER_V=${SNC_RUNNER_V}" >> "$GITHUB_ENV"
- name: Build image for Release
if: ${{ github.event_name == 'push' }}
run: |
make snc-runner-oci-build
SNC_RUNNER_SAVE=snc-runner make snc-runner-oci-save
# Get values from release-info
SNC_RUNNER ?= $(sed -n 1p snc-runner/release-info)
SNC_RUNNER_V ?= v$(sed -n 2p snc-runner/release-info)
echo "SNC_RUNNER=${SNC_RUNNER}" >> "$GITHUB_ENV"
echo "SNC_RUNNER_V=${SNC_RUNNER_V}" >> "$GITHUB_ENV"
- name: Create image metadata
run: |
echo ${{ env.SNC_RUNNER }}:${{ env.SNC_RUNNER_V }} > snc-runner-info
echo ${{ github.event_name }} > snc-runner-build-event
- name: Upload snc-runner
uses: actions/upload-artifact@v4
with:
name: snc-runner
path: snc-runner*
- name: Build image for Release
run: |
rm -rf *
- name: Download crc-builder-oci assets
id: download-gh-context-artifact
uses: actions/download-artifact@v4
with:
name: snc-runner
- name: Build image for Release
run: |
ls -al