Skip to content

Commit

Permalink
💚 remove windows and add jdk17
Browse files Browse the repository at this point in the history
  • Loading branch information
songxiaosheng committed Dec 18, 2023
1 parent 44265c4 commit b3634db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-2019 ]
os: [ ubuntu-latest]
jdk: [ 8, 11 ]
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
./mvnw --batch-mode -U -e --no-transfer-progress clean test verify -Pjacoco -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.count=5 -DskipTests=false -DskipIntegrationTests=false -Dcheckstyle.skip=false -Dcheckstyle_unix.skip=false -Drat.skip=false -Dmaven.javadoc.skip=true
- name: "Test with Maven"
timeout-minutes: 50
if: ${{ startsWith( matrix.os, 'windows') }}
if: ${{ startsWith( matrix.os) }}
run: |
cd ./dubbo-spi-extensions
./mvnw --batch-mode -U -e --no-transfer-progress clean test verify -Pjacoco -D"http.keepAlive=false" -D"maven.wagon.http.pool=false" -D"maven.wagon.httpconnectionManager.ttlSeconds=120" -D"maven.wagon.http.retryHandler.count=5" -DskipTests=false -DskipIntegrationTests=true -D"checkstyle.skip=false" -D"checkstyle_unix.skip=true" -D"rat.skip=false" -D"maven.javadoc.skip=true"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 8,11 ]
java: [ 8,11,17 ]
#testjob id list MUST match 'JOB_COUNT' of 'prepare_test'
job_id: [ 1,2,3 ]
steps:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 8,11 ]
java: [ 8,11,17 ]
env:
JAVA_VER: ${{matrix.java}}
steps:
Expand Down

0 comments on commit b3634db

Please sign in to comment.