Skip to content

Commit

Permalink
Adding releases-tier0.yml to run TIER0 on release branches (#188)
Browse files Browse the repository at this point in the history
Signed-off-by: Maayan Hadasi <[email protected]>
  • Loading branch information
mguetta1 authored Nov 5, 2024
1 parent 717bad5 commit 753df0e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/main-tier0-releases.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/releases-tier0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test TIER0 release braches

on:
pull_request:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'
push:
branches: [ "release-0.5", "release-0.4", "release-0.3" ]
paths-ignore:
- '**.md'

jobs:
test-tier0-release03:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
if: ${{ github.ref == 'refs/heads/release-0.3' }}
with:
tag: release-0.3
operator_tag: v0.3.2
api_tests_ref: release-0.3
api_tests_tiers: make test-tier0
run_api_tests: true
run_ui_tests: false
test-tier0-release04:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
if: ${{ github.ref == 'refs/heads/release-0.4' }}
with:
tag: release-0.4
operator_tag: v0.4.0
api_tests_ref: release-0.4
api_tests_tiers: make test-tier0
run_api_tests: true
run_ui_tests: false
test-tier0-release05:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
if: ${{ github.ref == 'refs/heads/release-0.5' }}
with:
tag: release-0.5
operator_tag: v0.5.1
api_tests_ref: release-0.5
api_tests_tiers: make test-tier0
run_api_tests: true
run_ui_tests: false


0 comments on commit 753df0e

Please sign in to comment.