Fix locale-dependent code in GameTest (#4451) #8364
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 | |
on: [push, pull_request, merge_group] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [21-ubuntu] | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: gradle/wrapper-validation-action@v2 | |
- run: ./gradlew check build :buildSrc:check publishToMavenLocal --stacktrace | |
- uses: Juuxel/publish-checkstyle-report@v1 | |
if: ${{ failure() }} | |
with: | |
reports: | | |
**/build/reports/checkstyle/*.xml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts ${{ matrix.java }} | |
path: | | |
build/libs/ | |
./*/build/libs/ | |
build/publishMods/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Maven Local ${{ matrix.java }} | |
path: ~/.m2/repository/net/fabricmc/ | |
client_test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
- run: | | |
curl -L -o tracy-capture https://github.com/modmuss50/tracy-utils/releases/download/0.0.2/linux-x86_64-tracy-capture | |
chmod +x tracy-capture | |
mkdir run && echo "eula=true" >> run/eula.txt | |
- run: ./gradlew runProductionClientGametest --stacktrace --warning-mode=fail | |
env: | |
ENABLE_TRACY_NO: true | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: Test Screenshots | |
path: run/screenshots | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: Tracy Profile | |
path: profile.tracy | |
server_test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
- run: mkdir run && echo "eula=true" >> run/eula.txt | |
- run: ./gradlew runProductionAutoTestServer --stacktrace --warning-mode=fail | |
check_resources: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '21' | |
- run: ./gradlew generateResources --stacktrace --warning-mode=fail | |
- run: if [ -n "$(git status --porcelain)" ]; then exit 1; fi |