-
Notifications
You must be signed in to change notification settings - Fork 6
150 lines (143 loc) · 5.27 KB
/
go-presubmit.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: Go
on:
workflow_dispatch: {}
push:
branches:
- main
- release-*
- backplane-*
pull_request:
branches:
- main
- release-*
- backplane-*
env:
# Common versions
GO_VERSION: '1.20'
GO_REQUIRED_MIN_VERSION: ''
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: build
run: make build
unit:
name: unit
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: unit
run: make test
- name: report coverage
uses: codecov/codecov-action@v3
with:
files: ./cover.out
flags: unit
name: unit
verbose: true
fail_ci_if_error: false
integration:
name: integration
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: integration
run: make test-integration
e2e:
name: e2e
runs-on: ubuntu-latest
steps:
- name: add permisson to docker.sock
run: sudo chown runner:docker /var/run/docker.sock
if: ${{ env.ACT }} # this step only runs locally when using the https://github.com/nektos/act to debug the e2e
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install clusteradm
run: curl -L https://raw.githubusercontent.com/open-cluster-management-io/clusteradm/v0.8.0/install.sh | bash
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Prepare OCM testing environment
run: |
clusteradm init --bundle-version='v0.13.0' --output-join-command-file join.sh --wait
sh -c "$(cat join.sh) loopback --force-internal-endpoint-lookup --bundle-version='v0.13.0'"
clusteradm accept --clusters loopback --wait 30
kubectl wait --for=condition=ManagedClusterConditionAvailable managedcluster/loopback
- name: Build image
run: |
make images
kind load docker-image quay.io/open-cluster-management/managed-serviceaccount:latest --name chart-testing
- name: Install latest managed-serviceaccount
run: |
helm install \
-n open-cluster-management-addon --create-namespace \
managed-serviceaccount charts/managed-serviceaccount/ \
--set tag=latest \
--set featureGates.ephemeralIdentity=true \
--set enableAddOnDeploymentConfig=true
- name: Run e2e test
run: make test-e2e GENKGO_ARGS='--ginkgo.label-filter='\''!template-install'\'''
e2e-addon-template:
name: e2e-addon-template
runs-on: ubuntu-latest
steps:
- name: add permisson to docker.sock
run: sudo chown runner:docker /var/run/docker.sock
if: ${{ env.ACT }} # this step only runs locally when using the https://github.com/nektos/act to debug the e2e
- name: checkout code
uses: actions/checkout@v2
- name: install Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Install clusteradm
run: curl -L https://raw.githubusercontent.com/open-cluster-management-io/clusteradm/v0.8.0/install.sh | bash
- name: Create k8s Kind Cluster
uses: helm/[email protected]
- name: Prepare OCM testing environment
run: |
clusteradm init --bundle-version='v0.13.0' --output-join-command-file join.sh --wait
sh -c "$(cat join.sh) loopback --force-internal-endpoint-lookup --bundle-version='v0.13.0'"
clusteradm accept --clusters loopback --wait 30
kubectl wait --for=condition=ManagedClusterConditionAvailable managedcluster/loopback
- name: Build image
run: |
make images
kind load docker-image quay.io/open-cluster-management/managed-serviceaccount:latest --name chart-testing
- name: Install latest managed-serviceaccount
run: |
helm install \
-n open-cluster-management-addon --create-namespace \
managed-serviceaccount charts/managed-serviceaccount/ \
--set tag=latest \
--set featureGates.ephemeralIdentity=true \
--set enableAddOnDeploymentConfig=true \
--set hubDeployMode=AddOnTemplate \
--set targetCluster=loopback
- name: Run e2e test
run: |
make test-e2e GENKGO_ARGS='--ginkgo.label-filter='\''!ephemeral&&!install'\'''
# run ephemeral tests after non-ephemeral and non-install tests to wait for the addon agent to be steady
make test-e2e GENKGO_ARGS='--ginkgo.label-filter=ephemeral'
# run install tests after non-ephemeral tests since it may cause the addon agent to be restarted
make test-e2e GENKGO_ARGS='--ginkgo.label-filter=install'