forked from servicemeshinterface/smi-controller-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (44 loc) · 1.23 KB
/
go.yml
File metadata and controls
59 lines (44 loc) · 1.23 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
name: Go
on:
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Setup Kubebuilder
run: |
os=$(go env GOOS)
arch=$(go env GOARCH)
# download kubebuilder and extract it to tmp
curl -L https://github.com/kubernetes-sigs/kubebuilder/releases/download/v3.1.0/kubebuilder_linux_amd64 \
-o /tmp/kubebuilder
sudo mv /tmp/kubebuilder /usr/local/bin/kubebuilder
- name: Check Kubebuilder can generate CRDs
run: make manifests
- name: Check Kubebuilder can generate deep copy objects
run: make generate
- name: Build
run: go build -v ./...
- name: Code Tests
run: make test
functional_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Setup Functional Tests
run: |
curl https://shipyard.run/install | bash
shipyard run ./shipyard
- name: Run Functional Tests
run: |
eval $(shipyard env)
make functional_test