diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-02-12 01:07:11 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-12 01:07:11 +0800 |
commit | 969474f60ab0c6800abb49cc34eb1f9ce4015bd5 (patch) | |
tree | b242ffcfd9cd0ecb8835293ae219d428bfbed07c | |
parent | 62ffec1be371a00749086b52c8e6743b9a3f2bae (diff) | |
download | go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar.gz go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar.bz2 go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar.lz go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar.xz go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.tar.zst go-tangerine-969474f60ab0c6800abb49cc34eb1f9ce4015bd5.zip |
build: deprecate zesty, add bionic PPA
-rw-r--r-- | build/ci.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go index 1f98bb843..544483c42 100644 --- a/build/ci.go +++ b/build/ci.go @@ -121,7 +121,8 @@ var ( // Note: vivid is unsupported because there is no golang-1.6 package for it. // Note: wily is unsupported because it was officially deprecated on lanchpad. // Note: yakkety is unsupported because it was officially deprecated on lanchpad. - debDistros = []string{"trusty", "xenial", "zesty", "artful"} + // Note: zesty is unsupported because it was officially deprecated on lanchpad. + debDistros = []string{"trusty", "xenial", "artful", "bionic"} ) var GOBIN, _ = filepath.Abs(filepath.Join("build", "bin")) |