Skip to content

Commit bb9e2fe

Browse files
committed
fix(springboot openfeign): fix spring cloud version error for springboot 3.3.x
Signed-off-by: lony2003 <[email protected]>
1 parent ee6f761 commit bb9e2fe

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ jobs:
2525
matrix:
2626
java: [ 17 ]
2727
spring-boot-version: [ 3.4.3 ]
28+
spring-cloud-version: [ 2024.0.1 ]
2829
spring-boot-display-version: [ 3.4.x ]
2930
experimental: [ false ]
3031
include:
3132
- java: 17
3233
spring-boot-version: 3.3.9
34+
spring-cloud-version: 2023.0.5
3335
spring-boot-display-version: 3.3.x
3436
experimental: false
3537
env:
@@ -126,7 +128,7 @@ jobs:
126128
run: ./mvnw install -q -B -DskipTests
127129
- name: Integration tests using spring boot version ${{ matrix.spring-boot-version }}
128130
id: integration_tests
129-
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -Pintegration-tests verify
131+
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} PRODUCT_SPRING_CLOUD_VERSION=${{ matrix.spring-cloud-version }} ./mvnw -B -Pintegration-tests verify
130132
env:
131133
DOCKER_HOST: ${{steps.setup_docker.outputs.sock}}
132134
- name: Upload test report for sdk

sdk-tests/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@
400400
</activation>
401401
<properties>
402402
<springboot.version>${env.PRODUCT_SPRING_BOOT_VERSION}</springboot.version>
403+
<springcloud.version>${env.PRODUCT_SPRING_CLOUD_VERSION}</springcloud.version>
403404
</properties>
404405
</profile>
405406
</profiles>

0 commit comments

Comments
 (0)