Choria Repository Installation Check #931
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: Choria Repository Installation Check | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "40 5 * * *" | |
jobs: | |
el8_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: EL8 Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:el8-go1.22 | |
el9_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: EL9 Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:el9-go1.22 | |
bionic_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bionic Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:bionic-go1.22 | |
focal_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Focal Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:focal-go1.22 | |
noble_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Noble Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:noble-go1.22 | |
bullseye_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bullseye Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:bullseye-go1.22 | |
bookworm_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Bookworm Installation Tests | |
shell: bash | |
run: docker run --entrypoint=/bin/install-choria.sh registry.choria.io/choria/packager:bookworm-go1.22 |