| # 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: "Java Test" |
| description: "Run Java tests" |
| inputs: |
| maven_opts: |
| description: 'Maven options passed to the mvn command' |
| required: false |
| default: '' |
| upload-test-reports: |
| description: 'Whether to upload test results including coverage to GitHub' |
| required: false |
| default: 'false' |
| |
| runs: |
| using: "composite" |
| steps: |
| - name: Run Cargo build |
| shell: bash |
| run: | |
| cd native |
| cargo build |
| |
| - name: Cache Maven dependencies |
| uses: actions/cache@v4 |
| with: |
| path: | |
| ~/.m2/repository |
| /root/.m2/repository |
| key: ${{ runner.os }}-java-maven-${{ hashFiles('**/pom.xml') }} |
| restore-keys: | |
| ${{ runner.os }}-java-maven- |
| |
| - name: Run Maven compile |
| shell: bash |
| run: | |
| ./mvnw -B compile test-compile scalafix:scalafix -Dscalafix.mode=CHECK -Psemanticdb ${{ inputs.maven_opts }} |
| |
| - name: Run tests |
| shell: bash |
| run: | |
| SPARK_HOME=`pwd` ./mvnw -B clean install ${{ inputs.maven_opts }} |
| |
| - name: Upload test results |
| if: ${{ inputs.upload-test-reports == 'true' }} |
| uses: actions/upload-artifact@v4 |
| with: |
| name: java-test-reports-${{ github.run_id }} |
| path: "**/target/surefire-reports/*.txt" |
| retention-days: 7 # 1 week for test reports |
| overwrite: true |
| |
| - name: Upload coverage results |
| if: ${{ inputs.upload-test-reports == 'true' }} |
| uses: codecov/codecov-action@v5 |