Skip to content

[#2872] Added a section of 13 OpenRocket-related projects in the README #2716

[#2872] Added a section of 13 OpenRocket-related projects in the README

[#2872] Added a section of 13 OpenRocket-related projects in the README #2716

Workflow file for this run

name: Build
on:
push:
branches:
- unstable
pull_request:
branches:
- unstable
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Execute Gradle build
run: ./gradlew clean check build dist
# If wanting to serialize all the engines during build
# run: ./gradlew clean serializeEnginesDist build dist
- name: Upload build reports
uses: actions/upload-artifact@v4
with:
name: build-reports
path: build/reports/
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: openrocket_build_${{ github.run_number }}
path: ${{github.workspace}}/build/libs/OpenRocket*.jar