diff --git a/.azure-pipelines/README.md b/.azure-pipelines/README.md deleted file mode 100644 index 385e70ba..00000000 --- a/.azure-pipelines/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Azure Pipelines Configuration - -Please see the [Documentation](https://github.com/ansible/community/wiki/Testing:-Azure-Pipelines) for more information. diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml deleted file mode 100644 index 7ed5c347..00000000 --- a/.azure-pipelines/azure-pipelines.yml +++ /dev/null @@ -1,137 +0,0 @@ -trigger: - batch: true - branches: - include: - - main - - stable-* - -pr: - autoCancel: true - branches: - include: - - main - - stable-* - -schedules: - - cron: 0 9 * * * - displayName: Nightly - always: true - branches: - include: - - main - - cron: 0 12 * * 0 - displayName: Weekly (old stable branches) - always: true - branches: - include: - - stable-2 - -variables: - - name: checkoutPath - value: ansible_collections/community/docker - - name: coverageBranches - value: main - - name: pipelinesCoverage - value: coverage - - name: entryPoint - value: tests/utils/shippable/shippable.sh - - name: fetchDepth - value: 0 - -resources: - containers: - - container: default - image: quay.io/ansible/azure-pipelines-test-container:6.0.0 - -pool: Standard - -stages: - -### Sanity & units - - stage: Ansible_2_14 - displayName: Sanity & Units 2.14 - dependsOn: [] - jobs: - - template: templates/matrix.yml - parameters: - targets: - - name: Sanity - test: '2.14/sanity/1' - - name: Sanity Extra # Only on 2.14 - test: '2.14/sanity/extra' - - name: Units - test: '2.14/units/1' - -### Docker - - stage: Docker_2_14 - displayName: Docker 2.14 - dependsOn: [] - jobs: - - template: templates/matrix.yml - parameters: - testFormat: 2.14/linux/{0} - targets: - - name: CentOS 7 - test: centos7 - - name: openSUSE 15 - test: opensuse15 - - name: Ubuntu 20.04 - test: ubuntu2004 - - name: Ubuntu 22.04 - test: ubuntu2204 - - name: Alpine 3 - test: alpine3 - groups: - - 4 - - 5 - - 6 - -### Community Docker - - stage: Docker_community_2_14 - displayName: Docker (community images) 2.14 - dependsOn: [] - jobs: - - template: templates/matrix.yml - parameters: - testFormat: 2.14/linux-community/{0} - targets: - - name: Debian Bullseye - test: debian-bullseye/3.9 - - name: CentOS Stream 8 - test: centos-stream8/3.9 - groups: - - 4 - - 5 - - 6 - -### Remote - - stage: Remote_2_14 - displayName: Remote 2.14 - dependsOn: [] - jobs: - - template: templates/matrix.yml - parameters: - nameFormat: RHEL {0} - testFormat: 2.14/rhel/{0} - targets: - - test: '7.9' - - test: '9.0-pypi-latest' - groups: - - 1 - - 2 - - 3 - - 4 - - 5 - # - 6 -- Docker 26 (used on RHEL 9) no longer works with docker-compose v1 - - ## Finally - - - stage: Summary - condition: succeededOrFailed() - dependsOn: - - Ansible_2_14 - - Remote_2_14 - - Docker_2_14 - - Docker_community_2_14 - jobs: - - template: templates/coverage.yml diff --git a/.azure-pipelines/scripts/aggregate-coverage.sh b/.azure-pipelines/scripts/aggregate-coverage.sh deleted file mode 100755 index 51fae879..00000000 --- a/.azure-pipelines/scripts/aggregate-coverage.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -# Aggregate code coverage results for later processing. - -set -o pipefail -eu - -agent_temp_directory="$1" - -PATH="${PWD}/bin:${PATH}" - -mkdir "${agent_temp_directory}/coverage/" - -if [[ "$(ansible --version)" =~ \ 2\.9\. ]]; then - exit -fi - -options=(--venv --venv-system-site-packages --color -v) - -ansible-test coverage combine --group-by command --export "${agent_temp_directory}/coverage/" "${options[@]}" - -if ansible-test coverage analyze targets generate --help >/dev/null 2>&1; then - # Only analyze coverage if the installed version of ansible-test supports it. - # Doing so allows this script to work unmodified for multiple Ansible versions. - ansible-test coverage analyze targets generate "${agent_temp_directory}/coverage/coverage-analyze-targets.json" "${options[@]}" -fi diff --git a/.azure-pipelines/scripts/combine-coverage.py b/.azure-pipelines/scripts/combine-coverage.py deleted file mode 100755 index 506ade64..00000000 --- a/.azure-pipelines/scripts/combine-coverage.py +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python -""" -Combine coverage data from multiple jobs, keeping the data only from the most recent attempt from each job. -Coverage artifacts must be named using the format: "Coverage $(System.JobAttempt) {StableUniqueNameForEachJob}" -The recommended coverage artifact name format is: Coverage $(System.JobAttempt) $(System.StageDisplayName) $(System.JobDisplayName) -Keep in mind that Azure Pipelines does not enforce unique job display names (only names). -It is up to pipeline authors to avoid name collisions when deviating from the recommended format. -""" - -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type - -import os -import re -import shutil -import sys - - -def main(): - """Main program entry point.""" - source_directory = sys.argv[1] - - if '/ansible_collections/' in os.getcwd(): - output_path = "tests/output" - else: - output_path = "test/results" - - destination_directory = os.path.join(output_path, 'coverage') - - if not os.path.exists(destination_directory): - os.makedirs(destination_directory) - - jobs = {} - count = 0 - - for name in os.listdir(source_directory): - match = re.search('^Coverage (?P[0-9]+) (?P