forked from oamg/convert2rhel
-
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.
[RHELC-1267] Add Alma, Rocky 8.9 to pipeline, 8.8 as EUS (oamg#997)
* Add Alma, Rocky 8.9 to pipeline, 8.8 as EUS * add published 8.9 AWS AMIs to the pipeline * keep 8.8 as EUS * modify the playbooks to hardcode 8.8 repos * address changes in metadata * uncomment the OracleLinux 8 jobs disabled in oamg#988 Signed-off-by: Daniel Diblik <[email protected]> * Fix tests, cleanup rcmtools repo and pkgs * Fix failing tests * Add a fixture to cleanup the packages from the repository rcmtools installed by testing farm and the repo itself Signed-off-by: Daniel Diblik <[email protected]> --------- Signed-off-by: Daniel Diblik <[email protected]>
- Loading branch information
Showing
19 changed files
with
304 additions
and
78 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
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
24 changes: 20 additions & 4 deletions
24
tests/ansible_collections/roles/hardcode-eus-version-repos/tasks/main.yml
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,8 +1,24 @@ | ||
--- | ||
- name: Hardcode Alma Linux repositories to vault | ||
- name: Hardcode Alma Linux repositories to 8.6 vault | ||
include_tasks: alma-86-repos.yml | ||
when: ansible_facts['distribution'] == "AlmaLinux" | ||
when: > | ||
ansible_facts['distribution'] == "AlmaLinux" | ||
and ansible_facts['distribution_version'] == "8.6" | ||
- name: Hardcode RockyLinux repositories to vault | ||
- name: Hardcode RockyLinux repositories to 8.6 vault | ||
include_tasks: rocky-86-repos.yml | ||
when: ansible_facts['distribution'] == "Rocky" | ||
when: > | ||
ansible_facts['distribution'] == "Rocky" | ||
and ansible_facts['distribution_version'] == "8.6" | ||
- name: Hardcode Alma Linux repositories to 8.8 vault | ||
include_tasks: alma-88-repos.yml | ||
when: > | ||
ansible_facts['distribution'] == "AlmaLinux" | ||
and ansible_facts['distribution_version'] == "8.8" | ||
- name: Hardcode RockyLinux repositories to 8.8 vault | ||
include_tasks: rocky-88-repos.yml | ||
when: > | ||
ansible_facts['distribution'] == "Rocky" | ||
and ansible_facts['distribution_version'] == "8.8" |
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
Oops, something went wrong.