-
Notifications
You must be signed in to change notification settings - Fork 137
109 lines (107 loc) · 3.24 KB
/
test.yaml
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
name: test
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "charts/**"
- "docs/**"
- "hack/**"
- "logos/**"
- "rfcs/**"
- "tools/**"
- "*.md"
push:
branches:
- main
permissions:
contents: read # for actions/checkout to fetch code
jobs:
test-1x-2x:
name: "Controller Tests: 10->29"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0000[12]"
test-3x-5x:
name: "Controller Tests: 30->59"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0000[345]"
test-6x-9x:
name: "Controller Tests: 60->99"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0000[6789]"
test-1xx:
name: "Controller Tests: 1xx"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0001"
test-2xx:
name: "Controller Tests: 2xx"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0002"
test-3xx:
name: "Controller Tests: 3xx"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0003"
test-99xx:
name: "Controller Tests: 99xx"
uses: ./.github/workflows/targeted-test.yaml
with:
pattern: "^Test_0099"
non-numbered:
name: "Controller Tests: Non-numbered"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b80ff79f1755d06ba70441c368a6fe801f5f3a62 # v4.0.0
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: go.mod
cache-dependency-path: |
**/go.sum
**/go.mod
- name: Setup Terraform
run: |
export TF_VERSION=1.3.9
wget https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip
unzip -q terraform_${TF_VERSION}_linux_amd64.zip
mv terraform $(which terraform)
terraform --version
- name: Setup Kustomize
if: "!github.event.pull_request.head.repo.fork"
uses: fluxcd/pkg/actions/kustomize@30c101fc7c9fac4d84937ff4890a3da46a9db2dd # main
- name: Run tests
run: |
make install-envtest
make normal-controller-test
internal:
name: "Internal Tests"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b80ff79f1755d06ba70441c368a6fe801f5f3a62 # v4.0.0
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: go.mod
cache-dependency-path: |
**/go.sum
**/go.mod
- name: Setup Terraform
run: |
export TF_VERSION=1.3.9
wget https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip
unzip -q terraform_${TF_VERSION}_linux_amd64.zip
mv terraform $(which terraform)
terraform --version
- name: Setup Kustomize
if: "!github.event.pull_request.head.repo.fork"
uses: fluxcd/pkg/actions/kustomize@30c101fc7c9fac4d84937ff4890a3da46a9db2dd # main
- name: Run tests
run: |
make install-envtest
make test-internal