Testing stuff..

This commit is contained in:
Lukas Rieger (Blue) 2023-09-27 23:09:53 +02:00
parent 01027af969
commit 71fcd91c3e
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
3 changed files with 20 additions and 22 deletions

View File

@ -18,18 +18,15 @@ jobs:
with: with:
submodules: recursive submodules: recursive
fetch-depth: 0 # needed for versioning fetch-depth: 0 # needed for versioning
- name: Set up JDK 1.17 - name: Set up Java
uses: actions/setup-java@v1 - uses: actions/setup-java@v3
with: with:
java-version: 17 distribution: 'temurin'
- uses: actions/cache@v3 java-version: |
with: 11
path: | 16
~/.gradle/caches 17
~/.gradle/wrapper cache: 'gradle'
key: "${{ runner.os }}-bluemap-${{ hashFiles('**/*.gradle*') }}"
restore-keys: |
${{ runner.os }}-bluemap-
- name: Build with Gradle - name: Build with Gradle
run: ./gradlew clean spotlessCheck test build run: ./gradlew clean spotlessCheck test build
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2

View File

@ -11,18 +11,15 @@ jobs:
with: with:
submodules: recursive submodules: recursive
fetch-depth: 0 # needed for versioning fetch-depth: 0 # needed for versioning
- name: Set up JDK 1.17 - name: Set up Java
uses: actions/setup-java@v1 - uses: actions/setup-java@v3
with: with:
java-version: 17 distribution: 'temurin'
- uses: actions/cache@v2 java-version: |
with: 11
path: | 16
~/.gradle/caches 17
~/.gradle/wrapper cache: 'gradle'
key: "${{ runner.os }}-bluemap-${{ hashFiles('**/*.gradle*') }}"
restore-keys: |
${{ runner.os }}-bluemap-
- name: Build with Gradle - name: Build with Gradle
env: env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}

View File

@ -29,6 +29,10 @@ def javaTarget = 16
java { java {
sourceCompatibility = JavaVersion.toVersion(javaTarget) sourceCompatibility = JavaVersion.toVersion(javaTarget)
targetCompatibility = JavaVersion.toVersion(javaTarget) targetCompatibility = JavaVersion.toVersion(javaTarget)
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
} }
minecraft { minecraft {