-
Notifications
You must be signed in to change notification settings - Fork 31
55 lines (48 loc) · 1.61 KB
/
installation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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