Remove unused preview image file jpro-mdfx
sample since is now auto…
#210
Workflow file for this run
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: Linux build | |
on: [push] | |
jobs: | |
builds: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: compile | |
run: | | |
./gradlew -PjavacppPlatform=macosx-arm64 jar | |
- name: test and javadoc | |
run: | | |
export DISPLAY=:99.0 && /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16; | |
./gradlew -DciTest=true -PjavacppPlatform=macosx-arm64 test | |
./gradlew -PjavacppPlatform=macosx-arm64 example:jar | |
./gradlew -PjavacppPlatform=macosx-arm64 javadoc |