-
Notifications
You must be signed in to change notification settings - Fork 40
68 lines (64 loc) · 1.68 KB
/
integration-test.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
name: 'Integration Test : Community'
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:
test:
strategy:
matrix:
kong_version:
- '2.1.4'
- '2.2.2'
- '2.3.3'
- '2.4.1'
- '2.5.2'
- '2.6.1'
- '2.7.2'
- '2.8.3'
- '3.0.2'
- '3.1.1'
- '3.2.2' # Not yet available
dbmode:
- 'dbless'
- 'postgres'
env:
KONG_IMAGE_TAG: ${{ matrix.kong_version }}
KONG_ANONYMOUS_REPORTS: "off"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Setup Kong
run: make setup-kong-${{ matrix.dbmode }}
- name: Run tests
run: make test-coverage
- name: Upload Code Coverage
uses: codecov/[email protected]
continue-on-error: true
with:
name: codecov-${{ matrix.kong_version }}
flags: ${{ matrix.kong_version }},integration,community
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
test-passed:
runs-on: ubuntu-latest
needs: test
if: always()
steps:
- name: Set workflow outcome
if: needs.test.result == 'failure' || needs.test.result == 'cancelled'
run: ${{ false }}