1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- name: Build and test
- on:
- push:
- branches:
- - master
- pull_request:
- paths:
- - '.github/workflows/test.yml'
- - '**Makefile'
- - '**.go'
- - '**.proto'
- - 'go.mod'
- - 'go.sum'
- jobs:
- test-linux:
- name: Build all and test on ubuntu-linux
- runs-on: ubuntu-latest
- steps:
- - name: Set up Go 1.19
- uses: actions/setup-go@v2
- with:
- go-version: 1.19
- id: go
- - name: Check out code into the Go module directory
- uses: actions/checkout@v2
- - uses: actions/cache@v2
- with:
- path: ~/go/pkg/mod
- key: ${{ runner.os }}-go1.19-${{ hashFiles('**/go.sum') }}
- restore-keys: |
- ${{ runner.os }}-go1.19-
- - name: Build
- run: make all
- - name: Test
- run: make test
- - name: End 2 end
- run: make e2evv
- - uses: actions/upload-artifact@v3
- with:
- name: e2e packet flow
- path: e2e/mermaid/
- if-no-files-found: warn
- test:
- name: Build and test on ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [windows-latest, macos-11]
- steps:
- - name: Set up Go 1.19
- uses: actions/setup-go@v2
- with:
- go-version: 1.19
- id: go
- - name: Check out code into the Go module directory
- uses: actions/checkout@v2
- - uses: actions/cache@v2
- with:
- path: ~/go/pkg/mod
- key: ${{ runner.os }}-go1.19-${{ hashFiles('**/go.sum') }}
- restore-keys: |
- ${{ runner.os }}-go1.19-
- - name: Build nebula
- run: go build ./cmd/nebula
- - name: Build nebula-cert
- run: go build ./cmd/nebula-cert
- - name: Test
- run: go test -v ./...
- - name: End 2 end
- run: make e2evv
- - uses: actions/upload-artifact@v3
- with:
- name: e2e packet flow
- path: e2e/mermaid/
- if-no-files-found: warn
|