Skip to content
Merged
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
8 changes: 5 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pytest_dim:
runs-on: ubuntu-latest
container:
image: oraclelinux:8
image: oraclelinux:9
services:
mariadb:
image: mariadb:10.11
Expand All @@ -31,10 +31,12 @@ jobs:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 'yes'
options: '--health-cmd="healthcheck.sh --su-mysql --connect --innodb_initialized" --health-interval=5s --health-timeout=2s --health-retries=4'
steps:
- name: Enable CRB repository for MariaDB dependencies
run: /bin/dnf config-manager --set-enabled ol9_codeready_builder
- name: Install dependencies
run: /bin/dnf install --assumeyes gcc python39-devel mariadb-devel git python39 make tar gzip
run: /bin/dnf install --assumeyes gcc python3-devel mariadb-devel git python3 make tar gzip
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Prepare virtual environment
run: make install-test
working-directory: dim-testsuite
Expand Down