Upgrade OPENRNDR/ORX
This commit is contained in:
15
.github/workflows/build-on-commit.yaml
vendored
Normal file
15
.github/workflows/build-on-commit.yaml
vendored
Normal 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
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user