Issue #219: Support of config bundles with extra configuration files #534
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build-extractor: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
- name: Run setup script | |
run: ./setup.sh | |
- name: extractor - Build and Test with Gradle | |
run: | | |
cd extractor | |
./gradlew clean build test run --args="../.ci-temp/checkstyle" --info --stacktrace --console=plain \ | |
-Dorg.gradle.logging.level=DEBUG \ | |
-Dtest.single=MainsLauncherTest | |
- name: diff-java-tool Build and Test with Gradle | |
run: | | |
cd diff-java-tool | |
./gradlew clean compileJava compileTestJava | |
- name: Check git changes | |
run: ./.github/workflows/commands.sh git-diff | |
- name: Upload build reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: | | |
extractor/build/reports | |
extractor/build/test-results | |
build-diff-java-tool: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
- name: diff-java-tool Build and Test with Gradle | |
run: | | |
cd diff-java-tool | |
./gradlew clean build | |
- name: Check git changes | |
run: ./.github/workflows/commands.sh git-diff | |
- name: Upload build reports | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: | | |
extractor/build/reports | |
extractor/build/test-results |