https://github.com/cilium/cilium
Raw File
Tip revision: c083860575f814ad07b199241e518bbc87767f7c authored by Joe Stringer on 25 February 2021, 22:12:05 UTC
Prepare for release v1.7.14
Tip revision: c083860
.travis.yml
language: go

dist: trusty
sudo: required

go:
 - 1.13.15

if: branch = master OR type = pull_request

addons:
  apt:
    packages:
      - kernel-package libc6-dev-i386

before_install: ./.travis/prepare.sh

before_script:
  - export PATH=/usr/local/clang/bin:$PATH
  - export GO=/home/travis/.gimme/versions/go1.13.15.linux.amd64/bin/go

script: ./.travis/build.sh
back to top