This repository was archived by the owner on Nov 13, 2025. It is now read-only.
Not sure what I'm doing here #721
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
| --- | |
| name: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| event-file: | |
| # https://github.com/marketplace/actions/publish-test-results#support-fork-repositories-and-dependabot-branches | |
| name: "Event File" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: event-file | |
| path: ${{ github.event_path }} | |
| ci-build: | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-15-intel | |
| java: | |
| - '21' | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5.0.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: ${{ matrix.java }} | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Install Docker on macOS | |
| if: matrix.os == 'macos-15-intel' | |
| uses: douglascamata/setup-docker-macos-action@v1.0.1 | |
| - name: clean build | |
| run: ./gradlew clean build --info --stacktrace | |
| env: | |
| ORG_GRADLE_PROJECT_githubPackagesUsername: ${{ env.GITHUB_ACTOR }} | |
| ORG_GRADLE_PROJECT_githubPackagesPassword: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload Test Results | |
| # see publish-test-results.yml for workflow that publishes test results without security issues for forks | |
| # https://github.com/marketplace/actions/publish-test-results#support-fork-repositories-and-dependabot-branches | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Test Results (Java ${{ matrix.java }} on ${{ matrix.os }}) | |
| path: '**/build/test-results/test/TEST-*.xml' | |
| ... |