File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed
Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 88 branches :
99 - main
1010 paths :
11- - containers/Containerfile.c9s
11+ - containers/Containerfile
1212
1313jobs :
1414 build :
2020 strategy :
2121 matrix :
2222 include :
23- - containerfile : containers/Containerfile.c9s
24- tags : " c9s latest"
23+ - containerfile : containers/Containerfile
24+ tags : " fedora latest"
25+ archs : " amd64"
26+ - containerfile : containers/Containerfile
27+ tags : " fedora latest"
28+ archs : " arm64"
29+ - containerfile : containers/Containerfile
30+ tags : " fedora latest"
31+ archs : " ppc64le"
2532
2633 steps :
2734 - uses : actions/checkout@v3
3845 containerfiles : ${{ matrix.containerfile }}
3946 image : base
4047 tags : ${{ matrix.tags }}
41- archs : amd64, arm64, ppc64le
48+ archs : ${{ matrix.archs }}
4249 # Uncomment once we stop using oc cluster up for tests
4350 # oci: true
4451
Original file line number Diff line number Diff line change 11# Be aware that this image is used for all stages, so if a dependency is removed be sure that it is
22# not required in anywhere
33
4- FROM quay.io/centos/centos:stream9
4+ FROM registry.fedoraproject.org/fedora:41
55
66ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \
77 ANSIBLE_STDOUT_CALLBACK=debug
88
9- RUN dnf -y install epel-release && \
10- crb enable && \
11- # TODO: revert this change after psql:15 works fine
12- dnf -y module enable postgresql:16 && \
13- dnf -y upgrade && \
9+ RUN dnf -y upgrade && \
1410 dnf -y install ansible python3-pip && \
1511 dnf clean all
You can’t perform that action at this time.
0 commit comments