Revision b423190bbaebe77717af40a5b664594231605c7e authored by Joe Stringer on 02 December 2021, 02:29:35 UTC, committed by Nathan Sweet on 03 December 2021, 21:11:31 UTC
[ upstream commit 0c7fe95b2fb16964cb932f82cedfd33ff1502c5c ]

This test has been flaky for well over a year now, see issue 11560.
Track re-enablement in https://github.com/cilium/cilium/projects/173

Signed-off-by: Joe Stringer <joe@cilium.io>
Signed-off-by: nathanjsweet <nathanjsweet@pm.me>
1 parent 7201336
Raw File
.travis.yml
language: go

dist: focal
sudo: required

go: "1.17.3"

jobs:
  include:
    - arch: amd64
    - arch: arm64-graviton2
      virt: vm
      group: edge
    - arch: amd64
      name: "amd64-race"
      if: type != pull_request
      env:
        - RACE=1
        - BASE_IMAGE=quay.io/cilium/cilium-runtime:fd939cafee48ecde09af1d96b9b9d21f9938d9e9@sha256:72bf50d49771c2f8bf346b24905f8856bcf16e41b67ff81a5f246283afb1017e
        - LOCKDEBUG=1

# Disabled due to a compilation issue: https://github.com/cilium/cilium/issues/13252
#    - arch: arm64-graviton2
#      name: "arm64-graviton2-race"
#      if: type != pull_request
#      env:
#        - RACE=1
#        - BASE_IMAGE=quay.io/cilium/cilium-runtime:fd939cafee48ecde09af1d96b9b9d21f9938d9e9@sha256:72bf50d49771c2f8bf346b24905f8856bcf16e41b67ff81a5f246283afb1017e
#        - LOCKDEBUG=1
#      virt: vm
#      group: edge

if: branch = master OR type = pull_request

addons:
  apt:
    packages:
      - kernel-package
      - gnupg
      - libncurses5

before_install: ./.travis/prepare.sh

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

script: ./.travis/build.sh

notifications:
  email: false
back to top