Skip to content

Commit 7213bdc

Browse files
authored
RUBY-1971 Remove Community zSeries From 4.0 testing (#136)
1 parent c165e8a commit 7213bdc

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.evergreen/config.yml

-6
Original file line numberDiff line numberDiff line change
@@ -493,12 +493,6 @@ axes:
493493
- id: "special-os"
494494
display_name: OS
495495
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-
502496
- id: "rhel71-ppc"
503497
display_name: "RHEL 7.1 PowerPC"
504498
run_on: rhel71-power8-test

.evergreen/functions.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ host_arch() {
1717
fi
1818
elif test -f /etc/redhat-release; then
1919
# RHEL or CentOS
20-
if test "`uname -m`" = s390x; then
21-
arch=rhel72-s390x
22-
elif test "`uname -m`" = ppc64le; then
20+
if test "`uname -m`" = ppc64le; then
2321
arch=rhel71-ppc
2422
elif lsb_release -i |grep -q RedHat; then
2523
release=`lsb_release -r |awk '{print $2}' |tr -d .`

0 commit comments

Comments
 (0)