Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions tests/ci/Containerfile.ohpc-validate-almalinux
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM docker.io/library/almalinux:9

# Install git first (required for cloning/checkout)
RUN dnf -y install git

# Update all packages
RUN dnf -y update

# Copy the prepare script
COPY tests/ci/prepare-ci-environment.sh /tmp/prepare-ci-environment.sh
RUN chmod +x /tmp/prepare-ci-environment.sh

# Run prepare-ci-environment.sh
RUN /tmp/prepare-ci-environment.sh
14 changes: 14 additions & 0 deletions tests/ci/Containerfile.ohpc-validate-leap
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM registry.opensuse.org/opensuse/leap:15.5

# Install git first (required for cloning/checkout)
RUN zypper -n install git

# Update all packages
RUN zypper -n update

# Copy the prepare script
COPY tests/ci/prepare-ci-environment.sh /tmp/prepare-ci-environment.sh
RUN chmod +x /tmp/prepare-ci-environment.sh

# Run prepare-ci-environment.sh
RUN /tmp/prepare-ci-environment.sh
14 changes: 14 additions & 0 deletions tests/ci/Containerfile.ohpc-validate-openeuler
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM docker.io/openeuler/openeuler:22.03-lts-sp3

# Install git first (required for cloning/checkout)
RUN dnf -y install git

# Update all packages
RUN dnf -y update

# Copy the prepare script
COPY tests/ci/prepare-ci-environment.sh /tmp/prepare-ci-environment.sh
RUN chmod +x /tmp/prepare-ci-environment.sh

# Run prepare-ci-environment.sh
RUN /tmp/prepare-ci-environment.sh
2 changes: 1 addition & 1 deletion tests/ci/prepare-ci-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi
. /etc/os-release

PKG_MANAGER=zypper
COMMON_PKGS="wget python3 jq man"
COMMON_PKGS="wget python3 jq man createrepo_c"
UNAME_M=$(uname -m)
YES="-n"

Expand Down
Loading