diff options
author | Brian McCarthy <brian.mccarthy@mongodb.com> | 2019-06-09 06:58:03 -0400 |
---|---|---|
committer | Brian McCarthy <brian.mccarthy@mongodb.com> | 2019-06-10 13:11:03 -0400 |
commit | 3bf12f15fdc8c791445d4a90f50c2d04b140d524 (patch) | |
tree | df9a35f56dbec07874dae8c7ba55c3e058b36be4 /buildscripts/packager.py | |
parent | 6322ae5b208549aff301268ef4062933f5dc7009 (diff) | |
download | mongo-v3.0.tar.gz |
SERVER-41604 For testing, update evergreen.yml on old stable branch to support ubuntu1604v3.0
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-x | buildscripts/packager.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index 059910c0f42..66b5cb956a1 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -233,6 +233,8 @@ class Distro(object): return "precise" elif build_os == 'ubuntu1404': return "trusty" + elif build_os == 'ubuntu1604': + return "xenial" else: raise Exception("unsupported build_os: %s" % build_os) elif self.n == 'debian': @@ -263,7 +265,7 @@ class Distro(object): elif self.n == 'amazon': return [ "amazon" ] elif self.n == 'ubuntu': - return [ "ubuntu1204", "ubuntu1404" ] + return [ "ubuntu1204", "ubuntu1404", "ubuntu1604" ] elif self.n == 'debian': return [ "debian71" ] else: |