summaryrefslogtreecommitdiff
path: root/buildscripts/packager.py
diff options
context:
space:
mode:
authorZakhar Kleyman <zakhar.kleyman@mongodb.com>2020-09-02 14:33:58 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-09-03 18:52:59 +0000
commit39c200878284912f19553901a6fea4b31531a899 (patch)
tree60cbdb7d0f1e798466d3a8e10e9caa0240202cd6 /buildscripts/packager.py
parent91563e0f58c8e3e2e3473283a5c14a3abc4bc25c (diff)
downloadmongo-56322d1f80eebb5865836260e705010ac372bd11.tar.gz
SERVER-33000 Add Ubuntu 18.04 supportr3.6.20-rc2r3.6.20
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-xbuildscripts/packager.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py
index e3ee56401df..06040a98257 100755
--- a/buildscripts/packager.py
+++ b/buildscripts/packager.py
@@ -255,6 +255,8 @@ class Distro(object):
return "trusty"
elif build_os == 'ubuntu1604':
return "xenial"
+ elif build_os == 'ubuntu1804':
+ return "bionic"
else:
raise Exception("unsupported build_os: %s" % build_os)
elif self.n == 'debian':
@@ -289,7 +291,7 @@ class Distro(object):
elif self.n == 'amazon':
return [ "amazon" ]
elif self.n == 'ubuntu':
- return [ "ubuntu1204", "ubuntu1404", "ubuntu1604", ]
+ return [ "ubuntu1204", "ubuntu1404", "ubuntu1604", "ubuntu1804"]
elif self.n == 'debian':
return [ "debian81", "debian92" ]
else: