Temporarily downgrade to Java 16

This commit is contained in:
Syer10
2022-01-08 14:01:57 -05:00
parent ad6b77588a
commit 6b876556c3
6 changed files with 8 additions and 8 deletions

View File

@@ -27,7 +27,7 @@ Note that the issue will be automatically closed if you do not fill out the titl
- Operating System: (Example: Ubuntu 20.04) - Operating System: (Example: Ubuntu 20.04)
- Desktop Environment: (Example: Gnome 40) - Desktop Environment: (Example: Gnome 40)
- Server Type: (Example: Internal) - Server Type: (Example: Internal)
- Client JVM version: (Example: Java 15.0.3 or JUI Installer) - Client JVM version: (Example: Java 17.0.1 or JUI Installer)
- Server JVM version: (Example: Same as Client or OpenJDK 8u281) - Server JVM version: (Example: Same as Client or OpenJDK 8u281)
## Steps to reproduce ## Steps to reproduce

View File

@@ -55,7 +55,7 @@ jobs:
- uses: actions/setup-java@v1 - uses: actions/setup-java@v1
if: ${{ matrix.runtime != 'linux-centos-x64' }} if: ${{ matrix.runtime != 'linux-centos-x64' }}
with: with:
java-version: '17' java-version: '16'
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
- name: Setup Cl - name: Setup Cl
@@ -70,7 +70,7 @@ jobs:
- name: Build rpm Package - name: Build rpm Package
if: ${{ matrix.runtime == 'linux-centos-x64' }} if: ${{ matrix.runtime == 'linux-centos-x64' }}
uses: Syer10/CentOS-Java17-Action@v1 uses: Syer10/CentOS-Java16-Action@v1
with: with:
command: ./gradlew ${{ matrix.build }} command: ./gradlew ${{ matrix.build }}

View File

@@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-java@v1 - uses: actions/setup-java@v1
with: with:
java-version: '17' java-version: '16'
architecture: x64 architecture: x64
- name: Setup Cl - name: Setup Cl

View File

@@ -56,7 +56,7 @@ jobs:
- uses: actions/setup-java@v1 - uses: actions/setup-java@v1
if: ${{ matrix.runtime != 'linux-centos-x64' }} if: ${{ matrix.runtime != 'linux-centos-x64' }}
with: with:
java-version: '17' java-version: '16'
architecture: ${{ matrix.arch }} architecture: ${{ matrix.arch }}
- name: Setup Cl - name: Setup Cl
@@ -71,7 +71,7 @@ jobs:
- name: Build rpm Package - name: Build rpm Package
if: ${{ matrix.runtime == 'linux-centos-x64' }} if: ${{ matrix.runtime == 'linux-centos-x64' }}
uses: Syer10/CentOS-Java17-Action@v1 uses: Syer10/CentOS-Java16-Action@v1
with: with:
command: ./gradlew ${{ matrix.build }} --stacktrace command: ./gradlew ${{ matrix.build }} --stacktrace

View File

@@ -28,7 +28,7 @@ These are the versions of [Tachidesk-Server][tachidesk-server] that JUI supports
## Downloading and Running the app ## Downloading and Running the app
### All Operating Systems (x64, Java Not Included) ### All Operating Systems (x64, Java Not Included)
You should have The [Java Runtime Environment(JRE) 15](https://jdk.java.net/15/) or newer. You should have The [Java(JRE or JDK) 17](https://adoptium.net/) or newer.
Download the latest jar release for your OS from [the releases section][release] (Or from [the preview releases][preview]). Download the latest jar release for your OS from [the releases section][release] (Or from [the preview releases][preview]).

View File

@@ -10,5 +10,5 @@ object Config {
const val preview = true const val preview = true
const val previewCommit = "b714abddae9f13e91bc53c5daac54aeae564cd2a" const val previewCommit = "b714abddae9f13e91bc53c5daac54aeae564cd2a"
val jvmTarget = JavaVersion.VERSION_17 val jvmTarget = JavaVersion.VERSION_16
} }