-
Notifications
You must be signed in to change notification settings - Fork 24
66 lines (62 loc) · 1.62 KB
/
go.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
name: Go
on:
push:
branches: [ main ]
jobs:
vendoring:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '>=1.20'
- uses: actions/checkout@v3
- run: |
go mod tidy
go mod vendor
go mod verify
bash ./hack/tree_status.sh
golangci-lint_fmt:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/setup-go@v3
with:
# cannot use 1.21.X latest version since golangci-lint has an issue.
go-version: '1.21.4'
- uses: actions/checkout@v3
- run: |
bash hack/install_dep.sh
make .install.golangci-lint
make lint
make gofmt
tests:
runs-on: ubuntu-latest
container:
image: quay.io/containers/podman:v4
volumes:
- container_volume:/var/lib/containers
options: "--device /dev/fuse:rw --security-opt label=disable --security-opt seccomp=unconfined --privileged"
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.21.4'
- uses: actions/checkout@v3
- run: |
yum -y install make gcc glib2-devel glibc-devel glibc-static device-mapper-devel
export GOBIN=$(pwd)/bin/
export CGO_ENABLED=1
make .install.ginkgo
make test
build_binary:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/setup-go@v3
with:
go-version: '>=1.20'
- uses: actions/checkout@v3
- run: |
bash hack/install_dep.sh
make binary