-
Notifications
You must be signed in to change notification settings - Fork 166
167 lines (167 loc) · 6.79 KB
/
spring_integration_test_2.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: Spring Integration Test2
env:
projectSpringBootVersion: 2.2.0.RELEASE
sermantVersion: 1.0.0
on:
push:
pull_request:
branches:
- '*'
paths:
- 'sermant-agentcore/**'
- 'sermant-integration-tests/spring-test/**'
- 'sermant-plugins/sermant-router/**'
- 'sermant-plugins/sermant-service-registry/**'
- 'sermant-plugins/sermant-springboot-registry/**'
- '.github/workflows/spring_integration_test_2.yml'
- '.github/actions/common/spring/action.yml'
- '.github/actions/scenarios/spring/router/**'
- '.github/actions/common/plugin-change-check/action.yml'
- '.github/actions/common/entry/action.yml'
- '.github/actions/common/exit/action.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
set-execution-conditions:
name: set-execution-conditions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: plugin-change-check
id: plugin-change-check
uses: ./.github/actions/common/plugin-change-check
- name: set-outputs
id: set-outputs
run: |
echo "enableSpringRouter=${{env.enableSpringRouter}}" >> $GITHUB_OUTPUT
echo "enableSpringTagRouter=${{env.enableSpringTagRouter}}" >> $GITHUB_OUTPUT
echo "enableSpringLane=${{env.enableSpringLane}}" >> $GITHUB_OUTPUT
outputs:
enableSpringRouter: ${{ steps.set-outputs.outputs.enableSpringRouter }}
enableSpringTagRouter: ${{ steps.set-outputs.outputs.enableSpringTagRouter }}
enableSpringLane: ${{ steps.set-outputs.outputs.enableSpringLane }}
download-midwares-and-cache:
name: download midwares and cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cache local cse
uses: actions/cache@v4
with:
path: Local-CSE-2.1.3-linux-amd64.zip
key: ${{ runner.os }}-local-cse
restore-keys: |
${{ runner.os }}-local-cse
- name: download cse
run: |
export ROOT_PATH=$(pwd)
bash ./sermant-integration-tests/scripts/tryDownloadMidware.sh cse
- name: cache zookeeper
uses: actions/cache@v4
with:
path: apache-zookeeper-3.6.3-bin.tar.gz
key: ${{ runner.os }}-apache-zookeeper-3.6.3
restore-keys: |
${{ runner.os }}-apache-zookeeper-3.6.3
- name: download zookeeper
run: |
export ROOT_PATH=$(pwd)
bash ./sermant-integration-tests/scripts/tryDownloadMidware.sh zk
- name: cache nacos server
uses: actions/cache@v4
with:
path: nacos-server-1.4.2.tar.gz
key: ${{ runner.os }}-nacos-server-1.4.2
restore-keys: |
${{ runner.os }}-nacos-server-1.4.2
- name: download nacos
run: |
export ROOT_PATH=$(pwd)
bash ./sermant-integration-tests/scripts/tryDownloadMidware.sh nacos
build-agent-and-cache:
name: build agent and cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- name: cache agent
uses: actions/cache@v4
with:
path: sermant-agent-*/
key: ${{ runner.os }}-agent-${{ github.run_id }}
- name: package agent
run: |
sed -i '/sermant-backend/d' pom.xml
sed -i '/sermant-integration-tests/d' pom.xml
sed -i '/sermant-injector/d' pom.xml
mvn package -DskipTests -Ptest --file pom.xml
test-for-spring:
name: Test for spring
runs-on: ubuntu-latest
if: needs.set-execution-conditions.outputs.enableSpringRouter == 'true'
|| needs.set-execution-conditions.outputs.enableSpringTagRouter == 'true'
|| needs.set-execution-conditions.outputs.enableSpringLane == 'true'
needs: [ set-execution-conditions, build-agent-and-cache, download-midwares-and-cache ]
strategy:
matrix:
include:
- springBootVersion: "1.5.0.RELEASE"
springCloudVersion: "Edgware.SR2"
nacosVersion: "1.5.0.RELEASE"
- springBootVersion: "2.0.2.RELEASE"
springCloudVersion: "Finchley.RELEASE"
httpClientVersion: "4.1.3"
nacosVersion: "2.0.0.RELEASE"
- springBootVersion: "2.1.0.RELEASE"
springCloudVersion: "Greenwich.RELEASE"
httpClientVersion: "4.2.6"
nacosVersion: "2.1.0.RELEASE"
- springBootVersion: "2.2.0.RELEASE"
springCloudVersion: "Hoxton.RELEASE"
httpClientVersion: "4.3.6"
nacosVersion: "2.2.0.RELEASE"
- springBootVersion: "2.3.0.RELEASE"
springCloudVersion: "Hoxton.RELEASE"
httpClientVersion: "4.4.1"
nacosVersion: "2.2.8.RELEASE"
- springBootVersion: "2.4.0"
springCloudVersion: "2020.0.0"
httpClientVersion: "4.5.6"
nacosVersion: "2021.0.1.0"
- springBootVersion: "2.6.2"
springCloudVersion: "2021.0.0"
httpClientVersion: "4.5.10"
nacosVersion: "2021.1"
- springBootVersion: "2.7.2"
springCloudVersion: "2021.0.3"
httpClientVersion: "4.5.13"
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 100
- name: set java version to environment
run: |
echo "javaVersion=8" >> $GITHUB_ENV
- name: common operations
uses: ./.github/actions/common/spring
- name: (spring router) test for springboot=${{ matrix.springBootVersion }} springCloudVersion=${{ matrix.springCloudVersion }}
if: needs.set-execution-conditions.outputs.enableSpringRouter == 'true'
uses: ./.github/actions/scenarios/spring/router/spring-router
- name: (spring tag router) test for springboot=${{ matrix.springBootVersion }} springCloudVersion=${{ matrix.springCloudVersion }}
if: needs.set-execution-conditions.outputs.enableSpringTagRouter == 'true'
uses: ./.github/actions/scenarios/spring/router/spring-tag-router
- name: (spring tag az router) test for springboot=${{ matrix.springBootVersion }} springCloudVersion=${{ matrix.springCloudVersion }}
if: needs.set-execution-conditions.outputs.enableSpringTagRouter == 'true'
uses: ./.github/actions/scenarios/spring/router/spring-tag-az-router
- name: (spring lane) test for springboot=${{ matrix.springBootVersion }} springCloudVersion=${{ matrix.springCloudVersion }}
if: needs.set-execution-conditions.outputs.enableSpringLane == 'true'
uses: ./.github/actions/scenarios/spring/lane