Update bug_report.yml #891
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
# Used when a commit is pushed to the repository | |
# This makes use of caching for faster builds and uploads the resulting artifacts | |
name: build-snapshot | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract current branch name | |
shell: bash | |
# bash pattern expansion to grab branch name without slashes | |
run: ref="${GITHUB_REF#refs/heads/}" && echo "branch=${ref////-}" >> $GITHUB_OUTPUT | |
id: ref | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- uses: madhead/read-java-properties@latest | |
id: mod_props | |
with: | |
file: gradle.properties | |
all: true | |
- name: Set up JDK | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Initialize caches | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
~/.minecraft/assets | |
key: ${{ runner.os }}-${{ github.ref }}-build-snapshot-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-${{ github.ref }}-build-snapshot- | |
- name: Build artifacts | |
run: ./gradlew jar | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Embeddium | |
path: build/libs | |
- name: Run automated tests | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: ./gradlew runGameTestCiClient | |
- name: Upload test artifacts | |
uses: actions/upload-artifact@v4 | |
if: ${{ !cancelled() }} | |
with: | |
name: Embeddium-TestData | |
path: runs/gameTestCiClient |