Phase 2: Fragment Migration - Migrated 42 ingredients to 54 fine-grained fragments - Replaced %include with %ksappend syntax - Created organized fragment structure (platform/generic-43, platform/generic-rawhide, shared/) - Updated generator to use fragment paths - All 16 manifest variants generate successfully Phase 3: Testing Infrastructure - Created containerized test runner (tests/container/) - Added integration test suite (tests/integration/) - Created golden master fixtures (tests/fixtures/expected_recipes/) - 41 tests passing (36 unit + 5 integration) - 54 fragments, 16 recipes validated Phase 4: CI/CD Integration - 5 new workflows: validate-recipes, validate-fragments, test-generation, container-tests, build-iso - Added validation gates before ISO builds - Works with existing fedora-runner-image - Local testing support via act_runner
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
env:
|
|
FEDORA_VERSION: 43
|
|
KICKSTART_FILE: live-desktop-hypervisor
|
|
|
|
jobs:
|
|
checkout:
|
|
runs-on: fedora
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
steps:
|
|
- uses: https://git.phyllo.me/devops/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Initialize mock
|
|
run: |
|
|
mock -r fedora-${{ env.FEDORA_VERSION }}-x86_64 --init
|
|
|
|
- name: Install required packages
|
|
run: |
|
|
mock -r fedora-${{ env.FEDORA_VERSION }}-x86_64 --install lorax-lmc-novirt vim-minimal pykickstart livecd-tools
|
|
|
|
- name: Copy configuration file to mock
|
|
run: |
|
|
mock -r fedora-${{ env.FEDORA_VERSION }}-x86_64 --copyin dishes/${{ env.KICKSTART_FILE }} /builddir
|
|
|
|
- name: Build ISO with livemedia-creator
|
|
run: |
|
|
mock -r fedora-${{ env.FEDORA_VERSION }}-x86_64 --shell --enable-network --isolation=simple << 'EOF'
|
|
cd /builddir
|
|
livemedia-creator --ks ${{ env.KICKSTART_FILE }}.cfg --no-virt --resultdir /var/lmc --project ${{ env.KICKSTART_FILE }} --make-iso --volid ${{ env.KICKSTART_FILE }} --iso-only --iso-name ${{ env.KICKSTART_FILE }}-${{ env.FEDORA_VERSION }}.iso --releasever ${{ env.FEDORA_VERSION }} --macboot
|
|
EOF
|
|
|
|
- name: Release
|
|
uses: https://git.phyllo.me/devops/action-gh-release@v2
|
|
if: github.ref_type == 'tag'
|
|
with:
|
|
files: /var/lib/mock/fedora-${{ env.FEDORA_VERSION }}-x86_64/root/var/lmc/${{ env.KICKSTART_FILE }}-${{ env.FEDORA_VERSION }}.iso
|
|
draft: false
|
|
prerelease: false
|
|
|
|
- name: Cleanup mock environment
|
|
if: always()
|
|
run: |
|
|
mock -r fedora-${{ env.FEDORA_VERSION }}-x86_64 --clean
|