aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-07-26 18:34:38 +0800
committerGitHub <noreply@github.com>2018-07-26 18:34:38 +0800
commitfeed8069a64ab4464aff589ecccf1bb3907faba4 (patch)
treeac9551bacaa608db4c97d52771843af56edff0db /build
parent514022bde6c5eca1a0f7659d11ec09d89746050d (diff)
parent05987071297b119f97b5eca996f4abffc75da42d (diff)
downloadgo-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.gz
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.bz2
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.lz
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.xz
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.tar.zst
go-tangerine-feed8069a64ab4464aff589ecccf1bb3907faba4.zip
Merge pull request #17251 from karalabe/ppa-deprecate-artful
build: deprecated ubuntu artful, enable ubuntu cosmic
Diffstat (limited to 'build')
-rw-r--r--build/ci.go3
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"))