done with renderdoc for now #139
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: Build Status | |
| on: | |
| push: | |
| branches: [ '*' ] | |
| pull_request: | |
| env: | |
| JAVA_VERSION: 21 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK ${{ env.JAVA_VERSION }} | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: ${{ env.JAVA_VERSION }} | |
| distribution: 'microsoft' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| cache-encryption-key: ${{ secrets.GRADLE_CONFIG_CACHE_ENCRYPTION_KEY }} | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x ./gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew assemble --rerun-tasks | |
| - name: Upload build artifacts (Common) | |
| continue-on-error: true | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}-Common-${{ github.sha }} | |
| path: | | |
| Common/build/libs/*.jar | |
| !Common/build/libs/*-dev.jar | |
| - name: Upload build artifacts (Fabric) | |
| continue-on-error: true | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}-Fabric-${{ github.sha }} | |
| path: | | |
| Fabric/build/libs/*.jar | |
| !Fabric/build/libs/*-dev.jar | |
| - name: Upload build artifacts (NeoForge) | |
| continue-on-error: true | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ github.event.repository.name }}-NeoForge-${{ github.sha }} | |
| path: | | |
| NeoForge/build/libs/*.jar | |
| !NeoForge/build/libs/*-dev.jar | |
| - name: Run tests | |
| run: ./gradlew check | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@ee6b445351cd81e2f73a16a0e52d598aeac2197f # v5.3.0 | |
| if: success() || failure() # always run even if the previous step fails | |
| with: | |
| report_paths: '**/build/test-results/test/TEST-*.xml' |