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
30 changes: 0 additions & 30 deletions .github/workflows/container-pytest.yml

This file was deleted.

33 changes: 9 additions & 24 deletions .github/workflows/container-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,13 @@ on:
types:
- created
jobs:
check-readme:
uses: "sclorg/ci-actions/.github/workflows/check-readme.yml@main"
container-tests:
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: [ "7.4", "8.0", "8.2", "8.3" ]
os_test: [ "fedora", "rhel8", "rhel9", "rhel10", "c9s", "c10s"]
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","container-pytest","openshift-4","openshift-pytest"]'
versions: '[ "7.4", "8.0", "8.2", "8.3" ]'
openshift-versions: '[ "7.4", "8.0", "8.2", "8.3" ]'
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.

35 changes: 13 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ PHP Docker images

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

Images available on Quay are:
* CentOS Stream 9 [php-74](https://quay.io/repository/sclorg/php-74-c9s)
* Fedora [php-80](https://quay.io/repository/fedora/php-80)
* Fedora [php-81](https://quay.io/repository/fedora/php-81)
* Fedora [php-82](https://quay.io/repository/fedora/php-82)
* Fedora [php-83](https://quay.io/repository/fedora/php-83)

This repository contains the source for building various versions of
the PHP application as a reproducible Docker image using
[source-to-image](https://github.com/openshift/source-to-image).
Expand All @@ -27,21 +20,19 @@ For more information about concepts used in these container images, see the

Versions
--------
PHP versions currently supported are:
* [php-7.4](7.4)
* [php-8.0](8.0)
* [php-8.1](8.1)
* [php-8.2](8.2)
* [php-8.3](8.3)

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

CenOS Stream versions currently supported are:
* CentOS Stream 9
* CentOS Stream 10
Currently supported versions are visible in the following table, expand an entry to see its container registry address.
<!--
Table start
-->
||CentOS Stream 9|CentOS Stream 10|Fedora|RHEL 8|RHEL 9|RHEL 10|
|:--|:--:|:--:|:--:|:--:|:--:|:--:|
|7.4||||<details><summary>✓</summary>`registry.redhat.io/rhel8/php-74`</details>|||
|8.0|||||<details><summary>✓</summary>`registry.redhat.io/rhel9/php-80`</details>||
|8.2|||<details><summary>✓</summary>`quay.io/fedora/php-82`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel8/php-82`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel9/php-82`</details>||
|8.3|<details><summary>✓</summary>`quay.io/sclorg/php-83-c9s`</details>|<details><summary>✓</summary>`quay.io/sclorg/php-83-c10s`</details>|<details><summary>✓</summary>`quay.io/fedora/php-83`</details>||<details><summary>✓</summary>`registry.redhat.io/rhel9/php-83`</details>|<details><summary>✓</summary>`registry.redhat.io/rhel10/php-83`</details>|
<!--
Table end
-->

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