-
Notifications
You must be signed in to change notification settings - Fork 11
81 lines (76 loc) · 1.98 KB
/
buildtest.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: go-build-and-test-amd64
on:
push:
pull_request:
schedule:
- cron: "0 8 * * 0" # every sunday
jobs:
build:
name: build
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-22.04]
goos: [linux]
goarch: [amd64]
runs-on: ${{ matrix.os }}
steps:
- name: set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: check out code into the Go module directory
uses: actions/checkout@v4
- name: build test for ${{ matrix.goarch }}
env:
GOARCH: ${{ matrix.goarch }}
GOOS: ${{ matrix.goos }}
run: make build
image-build:
name: image build
runs-on: ubuntu-22.04
steps:
- name: check out the repo
uses: actions/checkout@v4
- name: set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: build and push accelerated-bridge-cni
uses: docker/build-push-action@v5
with:
context: .
push: false
platforms: linux/amd64
tags: |
accelerated-bridge-cni:test
file: ./Dockerfile
test:
name: test
runs-on: ubuntu-22.04
needs: build
steps:
- name: set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: check out code into the Go module directory
uses: actions/checkout@v4
- name: run unit-test
run: make test
coverage:
runs-on: ubuntu-22.04
needs: build
name: coverage
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.20.x
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Go test with coverage
run: make test-coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: accelerated-bridge.cover