-
Notifications
You must be signed in to change notification settings - Fork 68
69 lines (61 loc) · 1.43 KB
/
nightly.yml
File metadata and controls
69 lines (61 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
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