diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-05-08 23:52:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 21:52:40 -0600 |
commit | f5c3f3cd17e24aa60571fc6884f99d16b43c4b00 (patch) | |
tree | bdcff6eccd71941455e9a8fff4a1d417b00eb5be | |
parent | 34b868020254106af8c79ffb85e04e294b19e44f (diff) | |
download | vyos-cloud-init-f5c3f3cd17e24aa60571fc6884f99d16b43c4b00.tar.gz vyos-cloud-init-f5c3f3cd17e24aa60571fc6884f99d16b43c4b00.zip |
.travis.yml: don't run lintian during integration test package builds (#352)
As we only look at these logs when there's an error, and lintian
failures don't cause the package build to error out, we never examine
this lintian output. Let's save ourselves some CI time by skipping it.
(We aren't lintian clean, otherwise a better change here would be to
make lintian warnings cause the package build to fail.)
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b7a56f38..32ad4415 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,7 @@ matrix: - ./packages/bddeb -S # Use this to get a new shell where we're in the sbuild group - sudo -E su $USER -c 'mk-sbuild xenial' - - sudo -E su $USER -c 'sbuild --nolog --verbose --dist=xenial cloud-init_*.dsc' + - sudo -E su $USER -c 'sbuild --nolog --no-run-lintian --verbose --dist=xenial cloud-init_*.dsc' # Ubuntu LTS: Integration - travis_wait 30 sg lxd -c 'tox -e citest -- run --verbose --preserve-data --data-dir results --os-name xenial --test modules/apt_configure_sources_list.yaml --test modules/ntp_servers --test modules/set_password_list --test modules/user_groups --deb cloud-init_*_all.deb' - python: 3.5 |