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
34 changes: 9 additions & 25 deletions .github/workflows/container-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,13 @@ on:
types:
- created
jobs:
check-readme:
uses: "sclorg/ci-actions/.github/workflows/check-readme.yml@main"
container-tests:
# This job only runs for '[test]' pull request comments by owner, member
name: "Container tests: ${{ matrix.version }} - ${{ matrix.os_test }}"
runs-on: ubuntu-latest
concurrency:
group: container-${{ github.event.issue.number }}-${{ matrix.version }}-${{ matrix.os_test }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
version: [ "10.3", "10.5", "10.11", "11.8" ]
os_test: [ "fedora", "rhel8", "rhel9", "c9s", "c10s", "rhel10" ]
test_case: [ "container" ]

if: |
github.event.issue.pull_request
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
steps:
- uses: sclorg/tfaga-wrapper@main
with:
os_test: ${{ matrix.os_test }}
version: ${{ matrix.version }}
test_case: ${{ matrix.test_case }}
public_api_key: ${{ secrets.TF_PUBLIC_API_KEY }}
private_api_key: ${{ secrets.TF_INTERNAL_API_KEY }}
needs: check-readme
uses: "sclorg/ci-actions/.github/workflows/container-tests.yml@main"
with:
enabled-tests: '["container","openshift-4","openshift-pytest"]'
versions: '[ "10.3", "10.5", "10.11", "11.8" ]'
openshift-versions: '[ "10.3", "10.5", "10.11", "11.8" ]'
secrets: inherit
41 changes: 0 additions & 41 deletions .github/workflows/openshift-pytests.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/openshift-tests.yml

This file was deleted.

33 changes: 12 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ MariaDB SQL Database Server Docker Image

[![Build and push images to Quay.io registry](https://github.com/sclorg/mariadb-container/actions/workflows/build-and-push.yml/badge.svg)](https://github.com/sclorg/mariadb-container/actions/workflows/build-and-push.yml)

Images available on Quay are:
* CentOS Stream 9 [mariadb-105](https://quay.io/repository/sclorg/mariadb-105-c9s)
* CentOS Stream 9 [mariadb-1011](https://quay.io/repository/sclorg/mariadb-1011-c9s)
* CentOS Stream 10 [mariadb-1011](https://quay.io/repository/sclorg/mariadb-1011-c10s)
* Fedora [mariadb-1011](https://quay.io/repository/fedora/mariadb-1011)
* Fedora [mariadb-118](https://quay.io/repository/fedora/mariadb-118)

This repository contains Dockerfiles for MariaDB images for OpenShift and general usage.
Users can choose between RHEL, Fedora and CentOS Stream based images.

Expand All @@ -27,20 +20,18 @@ For more information about concepts used in these podman images, see the

Versions
---------------
MariaDB versions currently provided are:
* [MariaDB 10.3](10.3)
* [MariaDB 10.5](10.5)
* [MariaDB 10.11](10.11)

RHEL versions currently supported are:
* RHEL8
* RHEL9
* RHEL10

CentOS Stream versions currently supported are:
* CentOS Stream 9
* CentOS Stream 10

<!--
Table start
-->
||CentOS Stream 9|CentOS Stream 10|Fedora|RHEL 8|RHEL 9|RHEL 10|
|:--|:--:|:--:|:--:|:--:|:--:|:--:|
|10.3||||<details><summary>✓</summary>`registry.redhat.io/rhel8/mariadb-103`</details>|||
|10.5|<details><summary>✓</summary>`quay.io/sclorg/mariadb-105-c9s`</details>|||<details><summary>✓</summary>`registry.redhat.io/rhel8/mariadb-105`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel9/mariadb-105`</details>||
|10.11|<details><summary>✓</summary>`quay.io/sclorg/mariadb-1011-c9s`</details>|<details><summary>✓</summary>`quay.io/sclorg/mariadb-1011-c10s`</details>|<details><summary>✓</summary>`quay.io/fedora/mariadb-1011`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel8/mariadb-1011`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel9/mariadb-1011`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel10/mariadb-1011`</details>|
|11.8|||<details><summary>✓</summary>`quay.io/fedora/mariadb-118`</details>||||
<!--
Table end
-->

Installation
----------------------
Expand Down