diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-10-30 12:33:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 12:33:37 -0400 |
commit | f72d0cb7a03cc311700ea8795edf2454172c7414 (patch) | |
tree | b33566fb642fba7d0e839079cf8934c77581dbe4 /.travis.yml | |
parent | a6afe9c574681632c3c82d6bc8c6a7fb91425bdf (diff) | |
download | vyos-cloud-init-f72d0cb7a03cc311700ea8795edf2454172c7414.tar.gz vyos-cloud-init-f72d0cb7a03cc311700ea8795edf2454172c7414.zip |
.travis.yml: use a known-working version of lxd (#643)
The latest lxd 4.7 snap causes failures; while we're diagnosing those
and addressing the issues (either upstream or in our code), pin at lxd
4.6 so we can continue to land PRs in cloud-init trunk.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 87841424..4342aacb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,7 +64,7 @@ matrix: # pylxd talks only to the lxd from snap - sudo apt remove --purge lxd lxd-client - sudo rm -Rf /var/lib/lxd - - sudo snap install lxd + - sudo snap install --channel=4.6/stable lxd - sudo lxd init --auto - sudo mkdir --mode=1777 -p /var/snap/lxd/common/consoles # Move any cached lxd images into lxd's image dir |