forked from freeipa/ansible-freeipa
-
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.
Merge pull request freeipa#1300 from rjeffman/update_upstream_ci
Fix upstream CI and remove molecule
- Loading branch information
Showing
51 changed files
with
421 additions
and
1,323 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
--- | ||
schedules: | ||
- cron: "0 19 * * *" | ||
displayName: Nightly Builds | ||
branches: | ||
include: | ||
- master | ||
always: true | ||
|
||
trigger: none | ||
|
||
pool: | ||
vmImage: 'ubuntu-20.04' | ||
|
||
stages: | ||
|
||
# Fedora | ||
|
||
- stage: fedora_latest_Ansible_Core_2_15 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: fedora-latest | ||
ansible_version: "-core >=2.15,<2.16" | ||
skip_git_test: true | ||
|
||
- stage: fedora_latest_Ansible_Core_2_16 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: fedora-latest | ||
ansible_version: "" | ||
skip_git_test: true | ||
|
||
- stage: fedora_latest_Ansible_Core_2_17 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: fedora-latest | ||
ansible_version: "-core >=2.17" | ||
skip_git_test: true | ||
|
||
# Galaxy on Fedora | ||
|
||
- stage: Galaxy_fedora_latest_Ansible_Core_2_17 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: fedora-latest | ||
ansible_version: "-core >=2.17,<2.18" | ||
skip_git_test: true | ||
test_galaxy: true | ||
|
||
# Fedora Rawhide | ||
|
||
- stage: fedora_rawhide_Ansible_Core_2_17 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: fedora-rawhide | ||
ansible_version: "-core >=2.17,<2.18" | ||
skip_git_test: true | ||
|
||
# CentoOS 9 Stream | ||
|
||
- stage: c9s_Ansible_Core_2_15 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: c9s | ||
ansible_version: "-core >=2.15,<2.16" | ||
skip_git_test: true | ||
|
||
- stage: c9s_Ansible_Core_2_16 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: c9s | ||
ansible_version: "-core >=2.16,<2.17" | ||
skip_git_test: true | ||
|
||
- stage: c9s_Ansible_Core_2_17 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: c9s | ||
ansible_version: "-core >=2.17,<2.18" | ||
skip_git_test: true | ||
|
||
# CentOS 8 Stream only works up to ansible-core 2.16.z | ||
|
||
- stage: c8s_Ansible_Core_2_15 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: c8s | ||
ansible_version: "-core >=2.15,<2.16" | ||
skip_git_test: true | ||
|
||
- stage: c8s_Ansible_Core_2_16 | ||
dependsOn: [] | ||
jobs: | ||
- template: templates/group_tests.yml | ||
parameters: | ||
build_number: $(Build.BuildNumber) | ||
distro: c8s | ||
ansible_version: "-core >=2.16,<2.17" | ||
skip_git_test: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
parameters: | ||
- name: distro | ||
type: string | ||
default: fedora-latest | ||
- name: build_number | ||
type: string | ||
- name: ansible_version | ||
type: string | ||
default: "" | ||
- name: skip_git_test | ||
type: boolean | ||
default: false | ||
- name: test_galaxy | ||
type: boolean | ||
default: false | ||
|
||
jobs: | ||
|
||
- ${{ each group in split('1,2,3', ',') }}: | ||
- template: run_tests.yml | ||
parameters: | ||
group_number: ${{ group }} | ||
number_of_groups: 3 | ||
build_number: ${{ parameters.build_number }} | ||
distro: ${{ parameters.distro }} | ||
ansible_version: ${{ parameters.ansible_version }} | ||
python_version: '< 3.12' | ||
skip_git_test: ${{ parameters.skip_git_test }} | ||
test_galaxy: ${{ parameters.test_galaxy }} |
Oops, something went wrong.