-
Notifications
You must be signed in to change notification settings - Fork 209
59 lines (49 loc) · 1.8 KB
/
go.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
name: Go
# Any change in triggers needs to be reflected in the concurrency group.
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
# renovate: datasource=golang-version depName=go
go-version: 1.21.5
- name: Run static checks
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
with:
# renovate: datasource=docker depName=golangci/golangci-lint
version: v1.55.2
args: --config=.golangci.yml --verbose
skip-cache: true
- name: Check module vendoring
run: |
go mod tidy
go mod vendor
go mod verify
test -z "$(git status --porcelain)" || (echo "please run 'go mod tidy && go mod vendor', and submit your changes"; exit 1)
- name: Build
run: make
- name: Cross-build
run: |
# all GOOS/GOARCH combinations supported by `make local-release`
GOOS=linux GOARCH=386 go build ./cmd/cilium
GOOS=linux GOARCH=amd64 go build ./cmd/cilium
GOOS=linux GOARCH=arm go build ./cmd/cilium
GOOS=linux GOARCH=arm64 go build ./cmd/cilium
GOOS=darwin GOARCH=amd64 go build ./cmd/cilium
GOOS=darwin GOARCH=arm64 go build ./cmd/cilium
GOOS=windows GOARCH=386 go build ./cmd/cilium
GOOS=windows GOARCH=amd64 go build ./cmd/cilium
GOOS=windows GOARCH=arm64 go build ./cmd/cilium
- name: Test
run: make test