Skip to content

Commit

Permalink
Add 9to10 to GH unit test action
Browse files Browse the repository at this point in the history
  • Loading branch information
matejmatuska authored and Rezney committed Jul 18, 2024
1 parent ba58aa9 commit 4778d96
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,29 @@ jobs:
fail-fast: false
matrix:
scenarios:
# 9to10
- name: Run unit tests for el9toel10 and common repositories on python 3.12
python: python3.12
repos: 'el9toel10,common'
container: ubi9
- name: Run unit tests for el9toel10 and common repositories on python 3.9
python: python3.9
repos: 'el9toel10,common'
container: ubi9
# 8to9
- name: Run unit tests for el8toel9 and common repositories on python 3.9
python: python3.9
repos: 'el8toel9,common'
container: ubi9
- name: Run unit tests for el8toel9 and common repositories on python 3.6
python: python3.6
repos: 'el8toel9,common'
container: ubi8
# 7to8
- name: Run unit tests for el7toel8 and common repositories on python 3.6
python: python3.6
repos: 'el7toel8,common'
container: ubi8
- name: Run unit tests for el8toel9 and common repositories on python 3.6
python: python3.6
repos: 'el8toel9,common'
container: ubi8
- name: Run unit tests for el7toel8 and common repositories on python 2.7
python: python2.7
repos: 'el7toel8,common'
Expand Down
4 changes: 3 additions & 1 deletion utils/container-tests/Containerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ FROM registry.access.redhat.com/ubi9/ubi:latest
VOLUME /payload

RUN dnf update -y && \
dnf install python3-virtualenv python3-setuptools python3-pip make git -y
dnf install python3-setuptools python3-pip make git -y

RUN pip install virtualenv

WORKDIR /payload
ENTRYPOINT make install-deps && make test

0 comments on commit 4778d96

Please sign in to comment.