aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ecb8211f7bdbd89989d43b3c13d89aa4e6db05e0 (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.12.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
  - GO111MODULE=on go mod download

script:
  - make test
  - make build
  - make examples
  - make gen-binapi-docker

notifications:
  slack:
    rooms:
      - ligato:QNOK2VgHH6k40T8nQxmSgRmo
    on_success: change
    on_failure: always