diff options
author | Jonathan Reams <jbreams@mongodb.com> | 2016-03-14 13:20:41 -0400 |
---|---|---|
committer | Jonathan Reams <jbreams@mongodb.com> | 2016-03-16 15:44:46 -0400 |
commit | d259a2f74a859ac8c6aa260ed7dec038c8d1d14a (patch) | |
tree | e1c3f72999d2bcb5e087505da38386136bfe7c21 /buildscripts/packager.py | |
parent | 626a4cf40f4ebd05b806a8acc4a3ba6528f7b701 (diff) | |
download | mongo-d259a2f74a859ac8c6aa260ed7dec038c8d1d14a.tar.gz |
SERVER-23121 Add RHEL71 POWER builder to master
Diffstat (limited to 'buildscripts/packager.py')
-rwxr-xr-x | buildscripts/packager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index 5b79eb8869c..29df7fd2b7f 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -236,13 +236,13 @@ class Distro(object): for redhat, "ubuntu1204" and "ubuntu1404" for Ubuntu, "debian71" for Debian), and "suse11" for SUSE)""" # Community builds only support amd64 - if not arch == "x86_64": + if arch not in ['x86_64', 'ppc64le']: raise Exception("BUG: unsupported architecture (%s)" % arch) if re.search("(suse)", self.n): return [ "suse11", "suse12" ] elif re.search("(redhat|fedora|centos)", self.n): - return [ "rhel70", "rhel62", "rhel55" ] + return [ "rhel70", "rhel71", "rhel62", "rhel55" ] elif self.n == 'amazon': return [ "amazon" ] elif self.n == 'ubuntu': |