-
Notifications
You must be signed in to change notification settings - Fork 133
69 lines (65 loc) · 2.24 KB
/
integration-enterprise.yaml
File metadata and controls
69 lines (65 loc) · 2.24 KB
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
name: Enterprise Integration Test
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
pull_request: {}
jobs:
integration:
timeout-minutes: ${{ fromJSON(vars.DECK_WORKFLOW_GW_TIMEOUT) }}
strategy:
matrix:
kong_image:
- 'kong/kong-gateway:2.8'
- 'kong/kong-gateway:3.4'
- 'kong/kong-gateway:3.5'
- 'kong/kong-gateway:3.6'
- 'kong/kong-gateway:3.7'
- 'kong/kong-gateway:3.8'
- 'kong/kong-gateway:3.9'
- 'kong/kong-gateway:3.10'
- 'kong/kong-gateway:3.11'
- 'kong/kong-gateway:3.12'
- 'kong/kong-gateway-dev:latest'
router_flavor:
- 'traditional_compatible'
- 'expressions'
env:
KONG_ANONYMOUS_REPORTS: "off"
KONG_IMAGE: ${{ matrix.kong_image }}
KONG_ROUTER_FLAVOR: ${{ matrix.router_flavor }}
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Setup go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- name: Login to Docker Hub
uses: docker/login-action@3227f5311cb93ffd14d13e65d8cc400d30f4dd8a
with:
username: ${{secrets.DOCKER_ORG_NAME}}
password: ${{secrets.DOCKER_ORG_TOKEN}}
- uses: Kong/kong-license@master
id: license
with:
op-token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
- name: Setup Kong
env:
KONG_LICENSE_DATA: ${{ steps.license.outputs.license }}
run: make setup-kong-ee
- name: Run integration tests
env:
KONG_LICENSE_DATA: ${{ steps.license.outputs.license }}
run: make test-integration
continue-on-error: ${{ matrix.kong_image == 'kong/kong-gateway-dev:latest' }}