forked from nodejs/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to use current yum repositories for IBM i 7.3. Install Python 3.9, and use it to install `tap2junit`. Do not set group on the `.ssh` directory on platforms such as IBM i and z/OS where we do not create a group. Refs: nodejs#2937 Refs: https://ibmi-oss-docs.readthedocs.io/en/latest/yum/IBM_REPOS.html
- Loading branch information
1 parent
c53f448
commit 429f839
Showing
4 changed files
with
20 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
--- | ||
|
||
- name: ibmi73 | install IBM i 7.3 repo | ||
get_url: | ||
url: https://public.dhe.ibm.com/software/ibmi/products/pase/rpms/ibm-7.3.repo | ||
dest: /QOpenSys/etc/yum/repos.d/ibm-7.3.repo | ||
mode: 0644 | ||
- name: ibmi73 | remove old repositories | ||
ansible.builtin.yum_repository: | ||
name: "{{ item }}" | ||
reposdir: /QOpenSys/etc/yum/repos.d | ||
state: absent | ||
loop: | ||
- ibm | ||
- ibm-7.3 | ||
|
||
- name: ibmi73 | install IBM i repositories | ||
ansible.builtin.yum: | ||
name: ibmi-repos | ||
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