diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-12-14 17:45:14 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-12-14 17:45:14 +0800 |
commit | 89416658960d4af844b1b0bfdd3513fa03b9412c (patch) | |
tree | 0bf5a830a1924b902c154b2c9792f33048c09ec2 | |
parent | 9cc0f60666d50e9c186f616c1016eead16d31185 (diff) | |
download | go-tangerine-89416658960d4af844b1b0bfdd3513fa03b9412c.tar.gz go-tangerine-89416658960d4af844b1b0bfdd3513fa03b9412c.tar.zst go-tangerine-89416658960d4af844b1b0bfdd3513fa03b9412c.zip |
build: Ubuntu wily was officially deprecated, drop support
-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 602eb8239..188fbc6f0 100644 --- a/build/ci.go +++ b/build/ci.go @@ -112,7 +112,8 @@ var ( // Distros for which packages are created. // Note: vivid is unsupported because there is no golang-1.6 package for it. - debDistros = []string{"trusty", "wily", "xenial", "yakkety"} + // Note: wily is unsupported because it was officially deprecated on lanchpad. + debDistros = []string{"trusty", "xenial", "yakkety"} ) var GOBIN, _ = filepath.Abs(filepath.Join("build", "bin")) |