terrymanu commented on code in PR #22071:
URL: https://github.com/apache/shardingsphere/pull/22071#discussion_r1020764203
##########
.github/workflows/nightly-it-example-generator.yml:
##########
@@ -25,11 +25,32 @@ env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false
-Dmaven.wagon.http.retryHandler.class=standard
-Dmaven.wagon.http.retryHandler.count=3 -Dcheckstyle.skip=true
-Dspotless.apply.skip=true -Dmaven.javadoc.skip=true
jobs:
- example-generator:
+ build-cache:
+ if: github.repository == 'apache/shardingsphere'
+ name: Build Cache
+ runs-on: ubuntu-latest
+ timeout-minutes: 90
+ steps:
+ - uses: actions/checkout@v3
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'temurin'
+ java-version: '8'
+ - uses: actions/cache@v3
+ with:
+ path: ~/.m2/repository
+ key: shardingsphere-maven-third-party-cache-${{ github.sha }}
+ restore-keys: |
+ shardingsphere-maven-third-party-cache-
+ shardingsphere-maven-third-party-
+ - name: Build with Maven
+ run: ./mvnw -B -T1C -ntp clean install -DskipITs -DskipTests
+ Generate-and-test-examples:
Review Comment:
Please use lower case for all job name
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]