name: bld-ci on: [push, pull_request, workflow_dispatch] jobs: build-bld-project: runs-on: ubuntu-latest env: COVERAGE_JDK: "17" strategy: matrix: java-version: [17, 21, 24] steps: - name: Checkout source repository uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK ${{ matrix.java-version }} uses: actions/setup-java@v4 with: distribution: "zulu" java-version: ${{ matrix.java-version }} - name: Download dependencies run: ./bld download - name: Compile source run: ./bld compile - name: Run tests run: ./bld jacoco - name: Remove pom.xml if: success() && matrix.java-version == env.COVERAGE_JDK run: rm -rf pom.xml - name: SonarCloud Scan uses: sonarsource/sonarcloud-github-action@master if: success() && matrix.java-version == env.COVERAGE_JDK env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 if: success() && matrix.java-version == env.COVERAGE_JDK env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}