Skip to content

Commit

Permalink
ci: different operator test for ubi
Browse files Browse the repository at this point in the history
  • Loading branch information
grooverdan committed Aug 9, 2024
1 parent 058bd4d commit c84633a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,13 @@ jobs:
- name: push
if: ${{ env.DEPLOY_IMAGES == 'true' }}
run: docker push ghcr.io/mariadb/mariadb:${{ matrix.name }}
- name: MariaDB Operator Test
if: ${{ env.DEPLOY_IMAGES == 'true' }}
- name: MariaDB Operator Test (non-UBI)
if: ${{ env.DEPLOY_IMAGES == 'true' && !endWith( matrix.name, 'ubi') }}
run: gh workflow run test-image.yml --repo mariadb-operator/mariadb-operator -f mariadb_image=ghcr.io/mariadb/mariadb:${{ matrix.name }}
env:
GITHUB_TOKEN: "${{ secrets.MARIADB_OPERATOR_TOKEN }}"
- name: MariaDB Operator Test (UBI)
if: ${{ env.DEPLOY_IMAGES == 'true' && endWith( matrix.name, 'ubi') }}
run: gh workflow run test-image-ent.yml --repo mariadb-operator/mariadb-operator -f mariadb_image=ghcr.io/mariadb/mariadb:${{ matrix.name }}
env:
GITHUB_TOKEN: "${{ secrets.MARIADB_OPERATOR_TOKEN }}"

0 comments on commit c84633a

Please sign in to comment.