-
Notifications
You must be signed in to change notification settings - Fork 40
123 lines (118 loc) · 3.64 KB
/
integration-test-enterprise.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
name: 'Integration Test : Enterprise'
concurrency:
# Run only for most recent commit in PRs but for all tags and commits on main
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
on:
push:
branches:
- 'main'
- 'release/*'
pull_request:
branches:
- '*'
jobs:
secret-available:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
outputs:
ok: ${{ steps.exists.outputs.ok }}
runs-on: ubuntu-latest
env:
PULP_PASSWORD: ${{ secrets.PULP_PASSWORD }}
steps:
- name: check for secret availability
id: exists
run: |
if [ ! -z "$PULP_PASSWORD" ]; then
echo "ok=true" >> $GITHUB_OUTPUT
fi
test-enterprise:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
continue-on-error: true
needs:
- secret-available
if: needs.secret-available.outputs.ok
strategy:
matrix:
# Skip explicitly to avoid spawning many unnecessary jobs,
# since expressions router is supported for Kong >= 3.0.
# Option router_flavor is ignored for Kong < 3.0.
exclude:
- kong_version: '2.2'
router_flavor: 'expressions'
- kong_version: '2.3'
router_flavor: 'expressions'
- kong_version: '2.4'
router_flavor: 'expressions'
- kong_version: '2.5'
router_flavor: 'expressions'
- kong_version: '2.6'
router_flavor: 'expressions'
- kong_version: '2.7'
router_flavor: 'expressions'
- kong_version: '2.8'
router_flavor: 'expressions'
router_flavor:
- 'traditional_compatible'
- 'expressions'
kong_version:
- '2.2'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '2.8'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
env:
KONG_ROUTER_FLAVOR: ${{ matrix.router_flavor }}
KONG_IMAGE_TAG: ${{ matrix.kong_version }}
KONG_ANONYMOUS_REPORTS: "off"
KONG_ADMIN_TOKEN: kong
runs-on: ubuntu-latest
steps:
# This will set KONG_LINCENSE_DATA environment variable.
# NOTE:
# This could be (?) made a shared step but for some reason it's impossible
# to override:
# Warning: Skip output 'license' since it may contain secret.
# on Github Actions when setting a job output.
- uses: Kong/kong-license@master
id: license_step
with:
password: ${{ secrets.PULP_PASSWORD }}
op-token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Setup Kong
run: make setup-kong-ee
- name: Run tests
run: make test-coverage-enterprise
- name: Upload Code Coverage
uses: codecov/[email protected]
continue-on-error: true
with:
name: codecov-${{ matrix.kong_version }}
flags: ${{ matrix.kong_version }},integration,enterprise
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
test-enterprise-passed:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
runs-on: ubuntu-latest
needs: test-enterprise
if: always()
steps:
- name: Set workflow outcome
if: needs.test-enterprise.result == 'failure' || needs.test-enterprise.result == 'cancelled'
run: ${{ false }}