forked from k8snetworkplumbingwg/whereabouts
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (75 loc) · 2.34 KB
/
test.yml
File metadata and controls
92 lines (75 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
#go-version: [1.15.x, 1.16.x]
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run Revive Action by building from repository
uses: morphy2k/revive-action@v1.4.1
with:
exclude: "./vendor/..."
name: "Revive"
- name: Install kubebuilder tools
run: ./hack/install-kubebuilder-tools.sh
- name: Generate code
run: ./hack/generate-code.sh && hack/verify-codegen.sh
- name: Run go fmt
run: go fmt ./...
#run: diff -u <(echo -n) <(gofmt -d -s .)
- name: Run go vet
run: go vet --tags=test ./...
- name: Install static check
run: go install honnef.co/go/tools/cmd/staticcheck@latest
- name: Test
run: sudo PATH=${PATH}:./bin ./hack/test-go.sh
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out
flag-name: Go-${{ matrix.go }}
parallel: true
env:
KUBEBUILDER_ASSETS: "$(pwd)/bin"
# notifies that all test jobs are finished.
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true
e2e-test:
name: e2e test
runs-on: ubuntu-latest
env:
NUMBER_OF_COMPUTE_NODES: 5
steps:
- name: Set up Go version
uses: actions/setup-go@v1
with:
go-version: 1.17
- name: Checkout code into the Go module directory
uses: actions/checkout@v2
- name: Install requirements
run: sudo apt-get install nmap jq && ./hack/build-go.sh
- name: Get tools, setup KinD cluster test environment
run: source hack/e2e-get-test-tools.sh && ./hack/e2e-setup-kind-cluster.sh --number-of-compute $NUMBER_OF_COMPUTE_NODES
- name: Clear test-cache
run: go clean -testcache
- name: Execute golang based E2E tests
env:
KUBECONFIG: /home/runner/.kube/config
NUMBER_OF_THRASH_ITER: 20
FILL_PERCENT_CAPACITY: 20
run: pushd e2e; go test -v . -timeout 1h; popd