Publish Snapshot on JDK 17 #41
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################################################ | |
| # Licensed to the Apache Software Foundation (ASF) under one | |
| # or more contributor license agreements. See the NOTICE file | |
| # distributed with this work for additional information | |
| # regarding copyright ownership. The ASF licenses this file | |
| # to you under the Apache License, Version 2.0 (the | |
| # "License"); you may not use this file except in compliance | |
| # with the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| ################################################################################ | |
| name: Publish Snapshot on JDK 17 | |
| on: | |
| schedule: | |
| # At the end of every day | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| env: | |
| JDK_VERSION: 17 | |
| MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=30 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.number || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| publish-snapshot: | |
| if: github.repository == 'apache/paimon' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ env.JDK_VERSION }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ env.JDK_VERSION }} | |
| distribution: 'temurin' | |
| - name: Cache local Maven repository | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2/repository | |
| key: snapshot-maven-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: | | |
| snapshot-maven- | |
| - name: Publish snapshot | |
| env: | |
| ASF_USERNAME: ${{ secrets.NEXUS_USER }} | |
| ASF_PASSWORD: ${{ secrets.NEXUS_PW }} | |
| MAVEN_OPTS: -Xmx4096m | |
| run: | | |
| tmp_settings="tmp-settings.xml" | |
| echo "<settings><servers><server>" > $tmp_settings | |
| echo "<id>apache.snapshots.https</id><username>$ASF_USERNAME</username>" >> $tmp_settings | |
| echo "<password>$ASF_PASSWORD</password>" >> $tmp_settings | |
| echo "</server></servers></settings>" >> $tmp_settings | |
| mvn --settings $tmp_settings clean install -Dgpg.skip -Drat.skip -DskipTests -Papache-release,spark4,flink1 -pl org.apache.paimon:paimon-spark-4.0_2.13 -am | |
| # skip deploy paimon-spark-common_2.13 and paimon-spark-ut_2.13, since they are already deployed in publish-snapshot.yml | |
| mvn --settings $tmp_settings clean deploy -Dgpg.skip -Drat.skip -DskipTests -Papache-release,spark4,flink1 -pl org.apache.paimon:paimon-spark4-common_2.13,org.apache.paimon:paimon-spark-4.0_2.13 | |
| rm $tmp_settings |