5.4.19-20241103_17309482 #151
This file contains 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
name: Build_Unit_Test | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- "README.md" | |
- "docs/**" | |
pull_request_target: | |
branches: | |
- "main" | |
paths-ignore: | |
- "README.md" | |
- "docs/**" | |
env: | |
MAVEN_CUSTOM_OPTS: "-Xmx4g -XX:+ExitOnOutOfMemoryError" | |
concurrency: | |
# main branch should complete running | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && format('ci-pull-{0}', github.event.pull_request.number) || format('ci-main-{0}', github.sha) }} | |
cancel-in-progress: true | |
permissions: | |
checks: write | |
contents: read | |
issues: read | |
pull-requests: write | |
jobs: | |
Build_Unit_Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }} | |
submodules: 'true' | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- uses: stCarolas/setup-maven@v4.3 | |
with: | |
maven-version: 3.5.0 | |
- name: Cache local Maven repository | |
id: cache-maven | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ github.workflow }}-${{ runner.os }}-maven-2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ github.workflow }}-${{ runner.os }}-maven-2- | |
- name: Populate maven cache | |
if: steps.cache-maven.outputs.cache-hit != 'true' | |
run: ./mvnw de.qaware.maven:go-offline-maven-plugin:resolve-dependencies | |
- name: Maven Build | |
run: | | |
export MAVEN_OPTS="${MAVEN_CUSTOM_OPTS}" | |
./mvnw -T 1C clean package install -DskipTests -Dcheckstyle.skip=true -Dmaven.javadoc.skip=true | |
- name: Unit Test | |
run: | | |
export MAVEN_OPTS="${MAVEN_CUSTOM_OPTS}" | |
sudo sed -i 's#.*#Asia/Shanghai#g' /etc/timezone | |
./mvnw test -B -pl '!polardbx-calcite,!polardbx-rule,!polardbx-rpc,!polardbx-test' -Dmaven.test.failure.ignore=true | |
- name: Analyze Unit Test Result | |
uses: scacap/action-surefire-report@v1 | |
with: | |
check_name: Unit Test Result | |
report_paths: polardbx-*/target/surefire-reports/TEST-*.xml | |
fail_on_test_failures: true |