summaryrefslogtreecommitdiff
path: root/buildscripts/packager-enterprise.py
diff options
context:
space:
mode:
authorBrian McCarthy <brian.mccarthy@mongodb.com>2019-06-09 06:58:03 -0400
committerBrian McCarthy <brian.mccarthy@mongodb.com>2019-06-10 13:11:03 -0400
commit3bf12f15fdc8c791445d4a90f50c2d04b140d524 (patch)
treedf9a35f56dbec07874dae8c7ba55c3e058b36be4 /buildscripts/packager-enterprise.py
parent6322ae5b208549aff301268ef4062933f5dc7009 (diff)
downloadmongo-3bf12f15fdc8c791445d4a90f50c2d04b140d524.tar.gz
SERVER-41604 For testing, update evergreen.yml on old stable branch to support ubuntu1604v3.0
Diffstat (limited to 'buildscripts/packager-enterprise.py')
-rwxr-xr-xbuildscripts/packager-enterprise.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/packager-enterprise.py b/buildscripts/packager-enterprise.py
index d2a8e110b2f..a3c1ad3d3b4 100755
--- a/buildscripts/packager-enterprise.py
+++ b/buildscripts/packager-enterprise.py
@@ -211,6 +211,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':
@@ -241,7 +243,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: