Skip to content

Added a "Cubic Chunks" button in the world creation screen #125

Added a "Cubic Chunks" button in the world creation screen

Added a "Cubic Chunks" button in the world creation screen #125

Workflow file for this run

name: Build Pull Request
on: [ pull_request ]
jobs:
build:
name: build-pr
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up git submodules
run: git submodule init && git submodule update
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build with Gradle
run: ./gradlew build -x test -x longRunTest
- name: Tar post-build state
run: tar -cvzpf /tmp/post-build.tar.gz .
- name: Upload post-build state
uses: actions/upload-artifact@v4
with:
name: post-build-state
path: /tmp/post-build.tar.gz
call-test:
needs: build
uses: ./.github/workflows/testJob.yml
with:
name: 'test'
command: './gradlew check -x longRunTest'
call-longRunTest:
needs: build
uses: ./.github/workflows/testJob.yml
with:
name: 'longRunTest'
command: './gradlew check -x test'
call-cleanup:
needs: [ call-test, call-longRunTest ]
uses: ./.github/workflows/cleanupJob.yml