generated from konveyor/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 14
46 lines (44 loc) · 1.51 KB
/
releases-tier0.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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' || github.event.pull_request.base.ref == 'release-0.3' }}
with:
tag: release-0.3
operator_tag: v0.3.2
api_tests_ref: ${{ github.ref }}
api_tests_tiers: DEBUG=1 make test-tier0
run_api_tests: true
run_ui_tests: false
api_hub_tests_ref: "release-0.3"
test-tier0-release04:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
if: ${{ github.ref == 'refs/heads/release-0.4' || github.event.pull_request.base.ref == 'release-0.4' }}
with:
tag: release-0.4
operator_tag: v0.4.0
api_tests_ref: ${{ github.ref }}
api_tests_tiers: DEBUG=1 make test-tier0
run_api_tests: true
run_ui_tests: false
api_hub_tests_ref: "release-0.4"
test-tier0-release05:
uses: konveyor/ci/.github/workflows/global-ci.yml@main
if: ${{ github.ref == 'refs/heads/release-0.5' || github.event.pull_request.base.ref == 'release-0.5' }}
with:
tag: release-0.5
operator_tag: v0.5.1
api_tests_ref: ${{ github.ref }}
api_tests_tiers: DEBUG=1 make test-tier0
run_api_tests: true
run_ui_tests: false
api_hub_tests_ref: "release-0.5"