blob: 872eb54207e1023e40a923b16250a38c218acec7 (
plain)
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
|
dist: xenial
services: docker
language: go
go:
- "1.13.x"
go_import_path: git.fd.io/govpp.git
env:
global:
- GO_BUILD_TAGS=novpp
before_script:
- export VPP_IMG="ligato/vpp-base:latest"
- docker pull $VPP_IMG
- go mod download
script:
- make lint || true
- make test
- make build
- make gen-binapi-docker
notifications:
slack:
rooms:
- ligato:QNOK2VgHH6k40T8nQxmSgRmo
on_success: change
on_failure: always
|