Skip to content

Commit

Permalink
ansible: remove AIX 7.1 (#3326)
Browse files Browse the repository at this point in the history
AIX 7.1 is no longer used in the CI once Node.js 14 reaches End-of-Life.

Refs: #3325
  • Loading branch information
richardlau committed Apr 28, 2023
1 parent 1b3b3d0 commit f724557
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 19 deletions.
9 changes: 0 additions & 9 deletions ansible/inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ hosts:
rhel8-x64-1: {ip: 159.203.115.217}

- ibm:
aix71-ppc64_be-2:
ip: 169.59.74.10
server_jobs: 6
aix72-ppc64_be-1:
ip: 169.54.113.163
remote_env:
Expand Down Expand Up @@ -152,12 +149,6 @@ hosts:
ubuntu2204-x64-2: {ip: 145.40.96.123, alias: jenkins-workspace-8}

- ibm:
aix71-ppc64_be-3:
ip: 169.48.23.70
server_jobs: 6
aix71-ppc64_be-4:
ip: 169.59.74.12
server_jobs: 6
aix72-ppc64_be-1:
ip: 169.54.113.142
remote_env:
Expand Down
4 changes: 0 additions & 4 deletions ansible/roles/baselayout/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ packages: {
'bash,cmake,coreutils,curl,gcc-c++,tar,unzip,git,make,sudo,python-setuptools,python3.9',
],

aix71: [
'gcc6-c++',
],

aix72: [
'gcc6-c++,gcc8-c++,gcc10-c++'
],
Expand Down
1 change: 0 additions & 1 deletion ansible/roles/java-base/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ java_package_name: "{{ packages[os]|default(packages[os|stripversion])|default(o
# e.g. on AIX ansible_architecture is 'chrp' on some of our hosts so we
# override arch to be on the safe side.
adoptopenjdk: {
aix71_ppc64: { arch: ppc64 },
aix72_ppc64: { arch: ppc64 },
aix73_ppc64: { arch: ppc64 },
centos7_ppc64: {}
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/jenkins-worker/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

init: {
aix: ['aix71', 'aix72', 'aix73'],
aix: ['aix72', 'aix73'],
centos6: 'centos6',
debian: 'debian7',
freebsd: 'freebsd',
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/package-upgrade/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

pm: {
'yum': ['centos', 'rhel7', 'aix71', 'aix72', 'ibmi'],
'yum': ['centos', 'rhel7', 'aix72', 'ibmi'],
'apt': ['debian', 'ubuntu'],
'dnf': ['aix73', 'fedora', 'rhel8'],
'pkgng': 'freebsd',
Expand Down
3 changes: 0 additions & 3 deletions jenkins/scripts/select-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,6 @@ elif [ "$SELECT_ARCH" = "AIXPPC" ]; then
*aix72* )
echo "Setting compiler for Node version $NODEJS_MAJOR_VERSION on AIX 7.2"
;;
*aix71* )
echo "Setting compiler for Node version $NODEJS_MAJOR_VERSION on AIX 7.1"
;;
esac

export CC="gcc-${COMPILER_LEVEL}"
Expand Down

0 comments on commit f724557

Please sign in to comment.