-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ansible: add RHEL 8 x64 instances (#2886)
Add RHEL 8 x64 instances, including repurposing some obsolete CentOS 6 instances which are no longer used by any CI jobs. Add: - release-digitalocean-rhel8-x64-1 - release-ibm-rhel8-x64-1 - release-ibm-rhel8-x64-2 - test-digitalocean-rhel8-x64-1 - test-ibm-rhel8-x64-1 - test-ibm-rhel8-x64-2 - test-ibm-rhel8-x64-3 Remove: - release-digitalocean-centos6-x86-1 - release-softlayer-centos6-x64-1 - test-digitalocean-ubuntu1404-x86-1 - test-softlayer-centos6-x64-1 - test-softlayer-centos6-x64-2 Refs: #2741 Refs: #2815
- Loading branch information
1 parent
c5cdd41
commit fa69d8e
Showing
9 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
|
||
# | ||
# Install packages for V8 builds. | ||
# | ||
|
||
# V8 builds still require Python 2. | ||
- name: install packages required to build V8 | ||
ansible.builtin.dnf: | ||
name: ['python2', 'python2-pip'] | ||
state: present | ||
|
||
- name: update python package alternatives | ||
community.general.alternatives: | ||
link: /usr/bin/python | ||
name: python | ||
path: /usr/bin/python2 | ||
|
||
- name: install dependencies for V8 build tools (Python 2) | ||
ansible.builtin.pip: | ||
executable: pip2 | ||
name: ['httplib2', 'six'] | ||
state: present | ||
|
||
- name: install dependencies for V8 build tools (Python 3) | ||
ansible.builtin.pip: | ||
executable: pip-3 | ||
name: ['httplib2', 'six'] | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters