2019-12-11 16:19:06 +01:00
|
|
|
name: Build and test
|
2019-12-12 04:47:40 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2020-03-02 22:21:19 +01:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/test.yml'
|
|
|
|
- '**Makefile'
|
|
|
|
- '**.go'
|
|
|
|
- '**.proto'
|
|
|
|
- 'go.mod'
|
|
|
|
- 'go.sum'
|
2019-12-11 16:19:06 +01:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
test-linux:
|
|
|
|
name: Build all and test on ubuntu-linux
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2021-10-21 23:24:11 +02:00
|
|
|
- name: Set up Go 1.17
|
|
|
|
uses: actions/setup-go@v2
|
2019-12-11 16:19:06 +01:00
|
|
|
with:
|
2021-10-21 23:24:11 +02:00
|
|
|
go-version: 1.17
|
2019-12-11 16:19:06 +01:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2021-10-21 23:24:11 +02:00
|
|
|
uses: actions/checkout@v2
|
2019-12-11 16:19:06 +01:00
|
|
|
|
2021-10-21 23:24:11 +02:00
|
|
|
- uses: actions/cache@v2
|
2020-03-02 22:21:19 +01:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
2021-10-21 23:24:11 +02:00
|
|
|
key: ${{ runner.os }}-go1.17-${{ hashFiles('**/go.sum') }}
|
2020-03-02 22:21:19 +01:00
|
|
|
restore-keys: |
|
2021-10-21 23:24:11 +02:00
|
|
|
${{ runner.os }}-go1.17-
|
2020-03-02 22:21:19 +01:00
|
|
|
|
2019-12-11 16:19:06 +01:00
|
|
|
- name: Build
|
|
|
|
run: make all
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: make test
|
|
|
|
|
2021-03-31 17:26:35 +02:00
|
|
|
- name: End 2 end
|
2021-05-01 01:19:40 +02:00
|
|
|
run: make e2evv
|
2021-03-31 17:26:35 +02:00
|
|
|
|
2019-12-11 16:19:06 +01:00
|
|
|
test:
|
|
|
|
name: Build and test on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [windows-latest, macOS-latest]
|
|
|
|
steps:
|
|
|
|
|
2021-10-21 23:24:11 +02:00
|
|
|
- name: Set up Go 1.17
|
|
|
|
uses: actions/setup-go@v2
|
2019-12-11 16:19:06 +01:00
|
|
|
with:
|
2021-10-21 23:24:11 +02:00
|
|
|
go-version: 1.17
|
2019-12-11 16:19:06 +01:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2021-10-21 23:24:11 +02:00
|
|
|
uses: actions/checkout@v2
|
2019-12-11 16:19:06 +01:00
|
|
|
|
2021-10-21 23:24:11 +02:00
|
|
|
- uses: actions/cache@v2
|
2020-03-02 22:21:19 +01:00
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
2021-10-21 23:24:11 +02:00
|
|
|
key: ${{ runner.os }}-go1.17-${{ hashFiles('**/go.sum') }}
|
2020-03-02 22:21:19 +01:00
|
|
|
restore-keys: |
|
2021-10-21 23:24:11 +02:00
|
|
|
${{ runner.os }}-go1.17-
|
2020-03-02 22:21:19 +01:00
|
|
|
|
2019-12-11 16:19:06 +01:00
|
|
|
- name: Build nebula
|
|
|
|
run: go build ./cmd/nebula
|
|
|
|
|
|
|
|
- name: Build nebula-cert
|
|
|
|
run: go build ./cmd/nebula-cert
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: go test -v ./...
|
2021-03-31 17:26:35 +02:00
|
|
|
|
|
|
|
- name: End 2 end
|
2021-05-01 01:19:40 +02:00
|
|
|
run: make e2evv
|