This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
150 lines (144 loc) · 4.07 KB
/
integration.yml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: integration
on:
push:
tags:
- v*
branches:
- main
- release-*
pull_request:
env:
GO_VERSION: '1.19'
permissions:
contents: read
jobs:
critest:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sudo -E test/test_runner.sh critest.bats
env:
JOBS: '1'
RUN_CRITEST: '1'
critest-conmonrs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- uses: sigstore/cosign-installer@v3
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sudo -E test/test_runner.sh critest.bats
env:
JOBS: '1'
RUN_CRITEST: '1'
RUNTIME_TYPE: pod
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sudo -E test/test_runner.sh
env:
JOBS: '2'
test-cgroupfs:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sed -i 's/\.slice//g' test/testdata/*.json
- run: sudo -E test/test_runner.sh
env:
JOBS: '2'
CONTAINER_CGROUP_MANAGER: cgroupfs
CONTAINER_CONMON_CGROUP: pod
test-userns:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sudo -E test/test_runner.sh
env:
JOBS: '2'
TEST_USERNS: '1'
test-conmonrs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-integration-v1-${{ hashFiles('**/go.sum') }}
restore-keys: go-integration-v1-
- uses: sigstore/cosign-installer@v3
- run: scripts/github-actions-packages
- run: scripts/github-actions-setup
- run: make all test-binaries
- run: sudo -E test/test_runner.sh
env:
JOBS: '2'
RUNTIME_TYPE: pod