Skip to content

Commit 8734c5a

Browse files
committed
ci: Expand OS testing matrix
1 parent 2e1af28 commit 8734c5a

5 files changed

Lines changed: 26 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ jobs:
1515
include:
1616
- name: Amazon Linux 2023
1717
container: ci/amazonlinux.yml
18+
- name: Ubuntu 24.04
19+
container: ci/ubuntu2404.yml
20+
- name: CentOS 9
21+
container: ci/centos9.yml
22+
- name: CentOS 10
23+
container: ci/centos10.yml
1824
steps:
1925
- uses: actions/checkout@v4
2026
- run: sudo apt update && sudo apt install -y podman && pip install container-sucks --break-system-packages && systemctl start --user podman.socket

ci/amazonlinux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Amazon Linux 2023
2-
image: quay.io/zathras/amazon-init:latest
2+
image: quay.io/zathras/amazonlinux-init:2023
33
initSteps:
44
- dnf install -y git jq util-linux hostname which tar
55
ciSteps:

ci/centos10.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: CentOS 10
2+
image: quay.io/zathras/centos-init:stream10
3+
initSteps:
4+
- dnf install -y git jq util-linux hostname which tar
5+
ciSteps:
6+
- /opt/pyperf-wrapper/pyperf/pyperf_run --pyperf_benchmarks 2to3,dask,dulwich_log

ci/centos9.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: CentOS 9
2+
image: quay.io/zathras/centos-init:stream9
3+
initSteps:
4+
- dnf install -y git jq util-linux hostname which tar bc zip
5+
ciSteps:
6+
- /opt/pyperf-wrapper/pyperf/pyperf_run --pyperf_benchmarks 2to3,dask,dulwich_log

ci/ubuntu2404.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: Ubuntu 24.04
2+
image: quay.io/zathras/ubuntu-init:24.04
3+
initSteps:
4+
- apt update
5+
- apt install -y git jq util-linux hostname which tar python3-requests
6+
ciSteps:
7+
- /opt/pyperf-wrapper/pyperf/pyperf_run --pyperf_benchmarks 2to3,dask,dulwich_log

0 commit comments

Comments
 (0)