Browse Source

Upgrade OPENRNDR/ORX

master
Edwin Jakobs 4 years ago
parent
commit
896a8629fa
  1. 15
      .github/workflows/build-on-commit.yaml
  2. 4
      build.gradle.kts

15
.github/workflows/build-on-commit.yaml

@ -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

4
build.gradle.kts

@ -52,10 +52,10 @@ val openrndrFeatures = setOf(
/* Which version of OPENRNDR and ORX should be used? */ /* Which version of OPENRNDR and ORX should be used? */
val openrndrUseSnapshot = false 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 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"> //<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") val supportedPlatforms = setOf("windows", "macos", "linux-x64", "linux-arm64")

Loading…
Cancel
Save