mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-12 18:46:35 +00:00
By doing this, the ones interested on RISC-V support can still have a ood visibility of its state, without the extra noise in our CI. Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
35 lines
763 B
YAML
35 lines
763 B
YAML
on:
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
|
|
name: Nightly CI for RISC-V
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
build-kata-static-tarball-riscv:
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
attestations: write
|
|
uses: ./.github/workflows/build-kata-static-tarball-riscv64.yaml
|
|
with:
|
|
tarball-suffix: -${{ github.sha }}
|
|
commit-hash: ${{ github.sha }}
|
|
target-branch: ${{ github.ref_name }}
|
|
|
|
build-checks-preview:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
instance:
|
|
- "riscv-builder"
|
|
uses: ./.github/workflows/build-checks-preview-riscv64.yaml
|
|
with:
|
|
instance: ${{ matrix.instance }}
|