Revision 353a20c3ba2201a3cf05b5689e4bc2a6142defa0 authored by Joe Stringer on 23 December 2019, 18:00:50 UTC, committed by Joe Stringer on 02 January 2020, 21:37:28 UTC
Recent CI builds have consumed as many as 4300 lines of CLI output per
attempt to download the helm client, over the course of about 6 seconds.

Use the `-nv` (no verbose) option to quieten this output to only
info/error/warnings; converts into about one line of output:

     $ wget -nv https://get.helm.sh/helm-v2.14.2-linux-amd64.tar.gz
     2019-12-23 10:00:32
     URL:https://get.helm.sh/helm-v2.14.2-linux-amd64.tar.gz
     [26534215/26534215] -> "helm-v2.14.2-linux-amd64.tar.gz" [1]

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

dist: trusty
sudo: required

go:
 - 1.13.5

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.5.linux.amd64/bin/go

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