test_psgi_hot_deploy_with_reload is failing on RHEL8 w/o OpenShift #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
container-tests: | |
runs-on: ubuntu-20.04 | |
name: "Container tests: ${{ matrix.version }} - ${{ matrix.os_test }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [ "5.26", "5.26-mod_fcgid", "5.30", "5.30-mod_fcgid", "5.32", "5.34", "5.36", "5.38" ] | |
os_test: [ "fedora", "rhel7", "rhel8", "rhel9", "c9s" ] | |
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 }} |