Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 11 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,9 @@ jobs:
fail-fast: false
matrix:
java: [ 17 ]
spring-boot-version: [ 3.5.4 ]
spring-boot-display-version: [ 3.5.x ]
spring-boot-version: [ 4.0.5 ]
spring-boot-display-version: [ 4.0.x ]
experimental: [ false ]
include:
- java: 17
spring-boot-version: 4.0.2
spring-boot-display-version: 4.0.x
experimental: false
env:
GOVER: "1.20"
GOOS: linux
Expand Down Expand Up @@ -197,38 +192,33 @@ jobs:
/home/runner/.local/bin/toxiproxy-server --version
- name: Clean up and install sdk
run: ./mvnw clean install -B -q -DskipTests
- name: Integration tests using spring boot 3.x version ${{ matrix.spring-boot-version }}
- name: Integration tests using Spring Boot ${{ matrix.spring-boot-version }}
id: integration_tests
if: ${{ matrix.spring-boot-display-version == '3.5.x' }}
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -pl !durabletask-client -Pintegration-tests dependency:copy-dependencies verify
- name: Integration tests using spring boot 4.x version ${{ matrix.spring-boot-version }}
id: integration_sb4_tests
if: ${{ matrix.spring-boot-display-version == '4.0.x' }}
run: PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -pl !durabletask-client -Pintegration-sb4-tests dependency:copy-dependencies verify
- name: Upload failsafe test report for sdk-tests on failure
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
uses: actions/upload-artifact@v7
with:
name: failsafe-report-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: sdk-tests/target/failsafe-reports
- name: Upload failsafe test report for sb4 sdk-tests on failure
if: ${{ failure() && steps.integration_sb4_tests.conclusion == 'failure' }}
- name: Upload failsafe test report for spring-boot-sdk-tests on failure
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
uses: actions/upload-artifact@v7
with:
name: failsafe-report-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: spring-boot-4-sdk-tests/target/failsafe-reports
name: failsafe-report-spring-boot-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: spring-boot-sdk-tests/target/failsafe-reports
- name: Upload surefire test report for sdk-tests on failure
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
uses: actions/upload-artifact@v7
with:
name: surefire-report-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: sdk-tests/target/surefire-reports
- name: Upload surefire test report for sdk-tests on failure
if: ${{ failure() && steps.integration_sb4_tests.conclusion == 'failure' }}
- name: Upload surefire test report for spring-boot-sdk-tests on failure
if: ${{ failure() && steps.integration_tests.conclusion == 'failure' }}
uses: actions/upload-artifact@v7
with:
name: surefire-report-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: spring-boot-4-sdk-tests/target/surefire-reports
name: surefire-report-spring-boot-sdk-tests-jdk${{ matrix.java }}-sb${{ matrix.spring-boot-version }}
path: spring-boot-sdk-tests/target/surefire-reports


publish:
Expand Down
61 changes: 0 additions & 61 deletions dapr-spring/dapr-spring-6-data/pom.xml

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading