Skip to content

Commit

Permalink
Merge pull request #41 from felixfontein/disable-arch
Browse files Browse the repository at this point in the history
Temporarily disable Arch Linux builds
  • Loading branch information
felixfontein authored Feb 20, 2023
2 parents 3302bac + 9e15844 commit 51e9b52
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ansible-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ jobs:
fail-fast: false
matrix:
include:
- name: archlinux
python: '3.10'
# TODO: re-enable arch
# - name: archlinux
# python: '3.10'
- name: centos-stream8
python: '3.6 3.8 3.9'
- name: debian-bullseye
Expand Down
2 changes: 1 addition & 1 deletion ansible-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ansible-test integration --python 3.6 --docker localhost/test-image:centos-strea

| image | py27 | py36 | py38 | py39 | py3.10 | Notes |
|-------------------|------|------|------|------|--------|------------------------------------------|
| [archlinux] | | | | | ✔️ | |
| [archlinux] | | | | | ✔️ | **Build temporarily disabled** |
| [centos-stream8] | | ✔️ |✔️[^1] | ✔️ | | Based on [centos8 ansible-test image] |
| [debian-bullseye] | | | | ✔️ | | Based on [ubuntu2004 ansible-test image] |

Expand Down
5 changes: 3 additions & 2 deletions playbooks/publish-ansible-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
destination: "{{ destination_repository | default('quay.io/ansible-community/test-image') }}"
images:
# These images are meant to be provided by running the "build-ansible-test-images.yml" playbook.
- name: localhost/test-image
tag: archlinux
# TODO: re-enable arch
# - name: localhost/test-image
# tag: archlinux
- name: localhost/test-image
tag: centos-stream8
- name: localhost/test-image
Expand Down
11 changes: 6 additions & 5 deletions roles/build-ansible-test-images/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ images_ansible_name: ansible-core
images_ansible_version: latest

images_available:
- name: localhost/test-image
tag: archlinux
script: ansible-test/archlinux/build.sh
pythons:
- "3.10"
# TODO: re-enable arch
# - name: localhost/test-image
# tag: archlinux
# script: ansible-test/archlinux/build.sh
# pythons:
# - "3.10"
- name: localhost/test-image
tag: centos-stream8
script: ansible-test/centos-stream8/build.sh
Expand Down

0 comments on commit 51e9b52

Please sign in to comment.