Fixed issue #839. #521
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
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Download Wix | |
uses: i3h/download-release-asset@v1 | |
with: | |
owner: wixtoolset | |
repo: wix3 | |
tag: wix3112rtm | |
file: wix311-binaries.zip | |
- name: Decompress Wix | |
run: 7z x wix311-binaries.zip -o".\target\wix" -aoa | |
- name: Add Wix to Path | |
run: echo "$HOME/target/wix" >> $GITHUB_PATH | |
- uses: actions/checkout@v3 | |
- name: Checkout dependencies repo | |
uses: actions/checkout@v3 | |
with: | |
repository: nilsschmidt1337/ldparteditor-build-dependencies | |
ref: dependencies-v3 | |
path: dependencies | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build with Ant | |
run: ant -noinput -buildfile build-windows.xml | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
check_name: junit-windows | |
report_paths: '**/report/TEST-*.xml' | |
fail_on_failure: true | |
require_passed_tests: true | |
- name: Archive windows installer for win32-x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: LDPartEditor_win32_x64 | |
path: bin/windows/setup | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout dependencies repo | |
uses: actions/checkout@v3 | |
with: | |
repository: nilsschmidt1337/ldparteditor-build-dependencies | |
ref: dependencies-v3 | |
path: dependencies | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Build with Ant | |
run: ant -noinput -buildfile build-linux.xml | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
check_name: junit-linux | |
report_paths: '**/report/TEST-*.xml' | |
fail_on_failure: true | |
require_passed_tests: true | |
- name: Archive linux installer for gtk3-x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: LDPartEditor_linux_x64 | |
path: bin/linux-gtk3/setup | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout dependencies repo | |
uses: actions/checkout@v3 | |
with: | |
repository: nilsschmidt1337/ldparteditor-build-dependencies | |
ref: dependencies-v3 | |
path: dependencies | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17.0.7+7' | |
- name: Build with Ant | |
run: ant -noinput -buildfile build-macos.xml | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
check_name: junit-macos | |
report_paths: '**/report/TEST-*.xml' | |
fail_on_failure: true | |
require_passed_tests: true | |
- name: Archive macosx installer for cocoa-x64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: LDPartEditor_mac_x64 | |
path: bin/macosx/setup |