Test extra fake asset #2703
Workflow file for this run
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 master | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: var | |
| name: Setup variables | |
| run: echo ::set-output name=commit_hash::${GITHUB_SHA:0:7} | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| with: | |
| gradle-home-cache-excludes: | | |
| caches/neoformruntime/assets | |
| - name: Cache Minecraft assets | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches/neoformruntime/assets | |
| key: mc-assets | |
| - name: Test adding a fake asset | |
| run: | | |
| mkdir -p ~/.gradle/caches/neoformruntime/assets/modern_industrialization | |
| echo "This is a test asset" > ~/.gradle/caches/neoformruntime/assets/modern_industrialization/test.txt | |
| - name: Build with Gradle | |
| run: ./gradlew build | |
| env: | |
| MI_VERSION: 0.0.0-git-${{ steps.var.outputs.commit_hash }} | |
| - name: Gametest Server | |
| run: | | |
| ./gradlew runGameTestServer | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Modern Industrialization ${{ steps.var.outputs.commit_hash }} | |
| path: build/libs |