We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c165e8a commit 7213bdcCopy full SHA for 7213bdc
.evergreen/config.yml
@@ -493,12 +493,6 @@ axes:
493
- id: "special-os"
494
display_name: OS
495
values:
496
- - id: "rhel72-s390x"
497
- display_name: "RHEL 7.2 Z-Series"
498
- run_on: rhel72-zseries-test
499
- variables:
500
- MACHINE: "rhel72-s390x"
501
-
502
- id: "rhel71-ppc"
503
display_name: "RHEL 7.1 PowerPC"
504
run_on: rhel71-power8-test
.evergreen/functions.sh
@@ -17,9 +17,7 @@ host_arch() {
17
fi
18
elif test -f /etc/redhat-release; then
19
# RHEL or CentOS
20
- if test "`uname -m`" = s390x; then
21
- arch=rhel72-s390x
22
- elif test "`uname -m`" = ppc64le; then
+ if test "`uname -m`" = ppc64le; then
23
arch=rhel71-ppc
24
elif lsb_release -i |grep -q RedHat; then
25
release=`lsb_release -r |awk '{print $2}' |tr -d .`
0 commit comments