Skip to content

Build COREOS-TESTING akmods #363

Build COREOS-TESTING akmods

Build COREOS-TESTING akmods #363

---
#
# WARNING THIS IS A GENERATED WORKFLOW. DO NOT EDIT BY HAND!
#
# Generate the workflow by running `just generate-workflows` at git root
# Modify the inputs in workflow-templates
name: Build COREOS-TESTING akmods
on:
merge_group:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
schedule:
- cron: '07 0 * * *' # 0007 UTC everyday
workflow_dispatch:
jobs:
cache_kernel_coreos-testing_43:
name: Cache coreos-testing (43)
uses: ./.github/workflows/reusable-cache-kernel.yml
secrets: inherit
permissions:
actions: read
contents: read
packages: write
with:
architecture: '["aarch64","x86_64"]'
kernel_flavor: coreos-testing
version: 43
build-coreos-testing_43_common:
name: Build common coreos-testing (43)
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
permissions:
actions: read
contents: read
packages: write
needs: cache_kernel_coreos-testing_43
with:
akmods_target: common
architecture: '["aarch64","x86_64"]'
kernel_cache_key: ${{ needs.cache_kernel_coreos-testing_43.outputs.KCKEY }}
kernel_flavor: coreos-testing
version: 43
build-coreos-testing_43_nvidia-lts:
name: Build nvidia-lts coreos-testing (43)
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
permissions:
actions: read
contents: read
packages: write
needs: cache_kernel_coreos-testing_43
with:
akmods_target: nvidia-lts
architecture: '["aarch64","x86_64"]'
kernel_cache_key: ${{ needs.cache_kernel_coreos-testing_43.outputs.KCKEY }}
kernel_flavor: coreos-testing
version: 43
build-coreos-testing_43_nvidia-open:
name: Build nvidia-open coreos-testing (43)
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
permissions:
actions: read
contents: read
packages: write
needs: cache_kernel_coreos-testing_43
with:
akmods_target: nvidia-open
architecture: '["aarch64","x86_64"]'
kernel_cache_key: ${{ needs.cache_kernel_coreos-testing_43.outputs.KCKEY }}
kernel_flavor: coreos-testing
version: 43
build-coreos-testing_43_zfs:
name: Build zfs coreos-testing (43)
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
permissions:
actions: read
contents: read
packages: write
needs: cache_kernel_coreos-testing_43
with:
akmods_target: zfs
architecture: '["aarch64","x86_64"]'
kernel_cache_key: ${{ needs.cache_kernel_coreos-testing_43.outputs.KCKEY }}
kernel_flavor: coreos-testing
version: 43
check-coreos-testing_43:
name: Check coreos-testing (43)
permissions:
actions: read
contents: read
needs: [build-coreos-testing_43_common,build-coreos-testing_43_nvidia-lts,build-coreos-testing_43_nvidia-open,build-coreos-testing_43_zfs]
runs-on: ubuntu-24.04
if: always()
steps:
- name: Check for Build Failures
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped')
run: exit 1
- name: Exit if Success
run: exit 0