Upgrade OPENRNDR/ORX

This commit is contained in:
Edwin Jakobs
2020-05-15 18:15:31 +02:00
parent 53dec983b1
commit 896a8629fa
2 changed files with 17 additions and 2 deletions

15
.github/workflows/build-on-commit.yaml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: Build on commit
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 14
- name: Build apidocs
run: ./gradlew build

View File

@@ -52,10 +52,10 @@ val openrndrFeatures = setOf(
/* Which version of OPENRNDR and ORX should be used? */
val openrndrUseSnapshot = false
val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.42-rc.7"
val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.42"
val orxUseSnapshot = false
val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.51-rc.5"
val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.51"
//<editor-fold desc="This is code for OPENRNDR, no need to edit this .. most of the times">
val supportedPlatforms = setOf("windows", "macos", "linux-x64", "linux-arm64")