https://github.com/cilium/cilium
Raw File
Tip revision: 0c580bdb83e91bfafab7522596eb196350d8e1ec authored by Joe Stringer on 05 November 2021, 22:32:09 UTC
Prepare for release v1.8.13
Tip revision: 0c580bd
.travis.yml
language: go

dist: bionic
sudo: required

go: "1.14.15"

arch:
  - amd64
  - arm64

jobs:
  allow_failures:
  - arch: arm64

if: branch = master OR type = pull_request

addons:
  apt:
    packages:
      - kernel-package
      - gnupg
      - libelf-dev

before_install: ./.travis/prepare.sh

before_script:
  - export PATH=/usr/local/clang/bin:$PATH

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