fix: blackbox_exporter ansible-lint risky-octal #499
Workflow file for this run
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
--- | |
name: Ansible CI | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- labeled | |
workflow_dispatch: | |
concurrency: | |
group: ansible-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
ANSIBLE_FORCE_COLOR: true | |
ANSIBLE_GALAXY_SERVER_GALAXY_URL: "https://galaxy.ansible.com" | |
ANSIBLE_GALAXY_SERVER_GALAXY_TIMEOUT: 120 | |
ANSIBLE_GALAXY_SERVER_LIST: "galaxy" | |
jobs: | |
ansible-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint collection | |
uses: ansible/ansible-lint@main | |
arguments-spec-lint: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/prometheus/golang-builder:base | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Lint arguments spec | |
run: ./.github/scripts/lint_arguments_spec.sh | |
discover-ansible-versions: | |
runs-on: ubuntu-latest | |
outputs: | |
versions: ${{ steps.supported-ansible-versions.outputs.result }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get Ansible versions that the collection supports | |
id: supported-ansible-versions | |
uses: mikefarah/yq@master | |
with: | |
cmd: yq -o json -I=0 '.requires_ansible | split(",") | .[] |= sub("(.*?)(\d+\.\d+)(.*)"; "stable-${2}")' meta/runtime.yml | |
ansible-test-sanity: | |
if: | | |
!github.event.label | |
uses: ./.github/workflows/ansible-test-sanity.yml | |
needs: | |
- ansible-lint | |
- discover-ansible-versions | |
with: | |
ansible-core-versions: ${{ needs.discover-ansible-versions.outputs.versions }} | |
discover-ansible-tests: | |
runs-on: ubuntu-latest | |
needs: | |
- ansible-lint | |
outputs: | |
molecule-tests: ${{ steps.set-molecule-tests.outputs.tests }} | |
integration-tests: ${{ steps.set-integration-tests.outputs.tests }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Discover role tests | |
id: set-molecule-tests | |
env: | |
LABELS: ${{ toJson(github.event.pull_request.labels.*.name) }} | |
run: | | |
roles=$(echo $LABELS | jq -r '.[]' | grep '^roles/' | sed 's|^roles/||') | |
echo tests="[`for role in $roles; do | |
for test in $(find tests/integration/targets -maxdepth 1 -mindepth 1 -type d -iname "molecule-${role}-*" -printf "%f\n"); do | |
echo '{"test":\"'"${test}"'\","name":\"'"${test#*-}\"'"}'; | |
done | |
done | tr '\n' ',' | sed '$s/,$//'`]" >> $GITHUB_OUTPUT | |
- name: Discover integration tests | |
id: set-integration-tests | |
run: | | |
echo tests="[`for test in $(find tests/integration/targets -maxdepth 1 -mindepth 1 -type d -not -iname "molecule-*" -printf "%f\n"); do | |
echo '{"test":\"'"${test}"'\","name":\"'"${test}\"'"}'; | |
done | tr '\n' ',' | sed '$s/,$//'`]" >> $GITHUB_OUTPUT | |
ansible-test-molecule: | |
uses: ./.github/workflows/ansible-test-integration.yml | |
needs: | |
- discover-ansible-tests | |
- discover-ansible-versions | |
if: needs.discover-ansible-tests.outputs.molecule-tests != '[]' && | |
needs.discover-ansible-tests.outputs.molecule-tests != '' | |
with: | |
targets: ${{ needs.discover-ansible-tests.outputs.molecule-tests }} | |
ansible-core-versions: ${{ needs.discover-ansible-versions.outputs.versions }} | |
coverage: never | |
ansible-test-integration: | |
uses: ./.github/workflows/ansible-test-integration.yml | |
needs: | |
- discover-ansible-tests | |
- discover-ansible-versions | |
if: | |
needs.discover-ansible-tests.outputs.integration-tests != '[]' && | |
needs.discover-ansible-tests.outputs.integration-tests != '' | |
with: | |
targets: ${{ needs.discover-ansible-tests.outputs.integration-tests }} | |
ansible-core-versions: ${{ needs.discover-ansible-versions.outputs.versions }} |