Skip to content

Commit

Permalink
build: add support for Ubuntu Hirsute Hippo
Browse files Browse the repository at this point in the history
  • Loading branch information
formingform committed Apr 20, 2023
1 parent b891a5f commit f96bfcf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ var (

// Packages to be cross-compiled by the xgo command
allCrossCompiledArchiveFiles = append(allToolsArchiveFiles)

// Distros for which packages are created.
// Note: vivid is unsupported because there is no golang-1.6 package for it.
// Note: wily is unsupported because it was officially deprecated on Launchpad.
Expand All @@ -125,11 +124,12 @@ var (
// Note: cosmic is unsupported because it was officially deprecated on Launchpad.
// Note: disco is unsupported because it was officially deprecated on Launchpad.
debDistroGoBoots = map[string]string{
"trusty": "golang-1.11",
"xenial": "golang-go",
"bionic": "golang-go",
"disco": "golang-go",
"focal": "golang-go",
"trusty": "golang-1.11",
"xenial": "golang-go",
"bionic": "golang-go",
"focal": "golang-go",
"groovy": "golang-go",
"hirsute": "golang-go",
}

debGoBootPaths = map[string]string{
Expand Down

0 comments on commit f96bfcf

Please sign in to comment.