diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-07-26 18:34:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 18:34:38 +0800 |
commit | feed8069a64ab4464aff589ecccf1bb3907faba4 (patch) | |
tree | ac9551bacaa608db4c97d52771843af56edff0db | |
parent | 514022bde6c5eca1a0f7659d11ec09d89746050d (diff) | |
parent | 05987071297b119f97b5eca996f4abffc75da42d (diff) | |
download | dexon-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.gz dexon-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.zst dexon-feed8069a64ab4464aff589ecccf1bb3907faba4.zip |
Merge pull request #17251 from karalabe/ppa-deprecate-artful
build: deprecated ubuntu artful, enable ubuntu cosmic
-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 29b43783c..fd1985fde 100644 --- a/build/ci.go +++ b/build/ci.go @@ -122,7 +122,8 @@ var ( // Note: wily is unsupported because it was officially deprecated on lanchpad. // Note: yakkety is unsupported because it was officially deprecated on lanchpad. // Note: zesty is unsupported because it was officially deprecated on lanchpad. - debDistros = []string{"trusty", "xenial", "artful", "bionic"} + // Note: artful is unsupported because it was officially deprecated on lanchpad. + debDistros = []string{"trusty", "xenial", "bionic", "cosmic"} ) var GOBIN, _ = filepath.Abs(filepath.Join("build", "bin")) |