diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2018-06-05 10:12:58 -0400 |
---|---|---|
committer | Mathew Robinson <chasinglogic@gmail.com> | 2018-06-06 16:41:23 -0400 |
commit | 0b001ed1ab7e8443213db38030cf17d2a6f5be2c (patch) | |
tree | f1a74d9f2baf0ef81aa225239dfee43591a1ef0d /buildscripts/packager.py | |
parent | 92c61392d3a0a31c39b0ed0712d964503e6c0e27 (diff) | |
download | mongo-0b001ed1ab7e8443213db38030cf17d2a6f5be2c.tar.gz |
SERVER-33000 Add Ubuntu 18.04 support
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-x | buildscripts/packager.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index d0bd5423e71..1e6644690af 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -294,6 +294,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.dname == 'debian': @@ -337,6 +339,7 @@ class Distro(object): "ubuntu1204", "ubuntu1404", "ubuntu1604", + "ubuntu1804", ] elif self.dname == 'debian': return ["debian81", "debian92"] |