Skip to content

ci: Introduce nightly tests #75

ci: Introduce nightly tests

ci: Introduce nightly tests #75

Workflow file for this run

name: urunc CI (nightly)
on:
pull_request:
branches: ["main"]
push:
branches: ["main"]
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
packages: write
id-token: write
attestations: write
jobs:
validate-files-and-commits:
name: Lint Files & commits
uses: ./.github/workflows/validate-files-and-commits.yml
with:
ref: ${{ github.sha }}
secrets: inherit
lint:
name: Lint code
uses: ./.github/workflows/lint.yml
with:
ref: ${{ github.sha }}
secrets: inherit
build:
name: Build
uses: ./.github/workflows/build.yml

Check failure on line 40 in .github/workflows/nightly.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly.yml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly.yml" -> "./.github/workflows/build.yml" : (Line: 11, Col: 15): Unexpected value 'bool'
with:
ref: ${{ github.sha }}
upload: true
secrets: inherit
vm_test:
needs: [build]
name: E2E test
uses: ./.github/workflows/vm_test.yml
with:
runner-archs: '["amd64", "arm64"]'
runc_version: '1.3.0'
containerd_version: '2.1.3'
cni_version: '1.7.1'
nerdctl_version: '2.1.3'
crictl_version: 'v1.30.0'
firecracker_version: 'v1.7.0'
solo5_version: 'v0.9.0'
secrets: inherit
kind_test:
needs: [build]
name: Kubernetes test
uses: ./.github/workflows/kind_test.yml
with:
firecracker_version: 'v1.7.0'
solo5_version: 'v0.9.0'
runc_version: '1.3.0'
secrets: inherit