docs: update the UI bundle to the 2024 version #599
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# GitHub Actions workflow for commits pushed to the LbjExamples repo - all branches | |
name: CI at GitHub | |
on: [push] | |
jobs: | |
Java8-Linux: | |
if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 8 | |
- run: ./gradlew :apps:HelloLibbulletjme --console=plain --no-daemon --stacktrace | |
- run: ./gradlew :apps:HelloVehicle0 --console=plain --no-daemon --stacktrace | |
Java11-Linux: | |
if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 11 | |
- uses: gradle/wrapper-validation-action@v1 | |
- run: mkdir ~/Downloads | |
- run: ./gradlew :apps:HelloLibbulletjme --console=plain --no-daemon --stacktrace | |
- run: ./gradlew :apps:HelloVehicle0 --console=plain --no-daemon --stacktrace | |
Java17-MacOS: | |
if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- run: ./gradlew :apps:HelloLibbulletjme --console=plain --no-daemon --stacktrace | |
- run: ./gradlew :apps:HelloVehicle0 --console=plain --no-daemon --stacktrace | |
Java21-Windows: | |
if: contains(toJson(github.event.commits), '[ci skip] ') == false | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 21 | |
- run: ./gradlew :apps:HelloLibbulletjme --console=plain --no-daemon --stacktrace | |
- run: ./gradlew :apps:HelloVehicle0 --console=plain --no-daemon --stacktrace | |
shell: bash |