Skip to content

Commit

Permalink
Dont run test suite on non-linux, just build and test PLANTS executable
Browse files Browse the repository at this point in the history
  • Loading branch information
sverhoeven committed Nov 22, 2023
1 parent b1308c7 commit dc006f0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build
run: mvn -B verify
run: mvn -B package
- name: Test executable
run: bin.windows/src/main/resources/bin/PLANTS
build-macos:
runs-on: macos-latest
steps:
Expand All @@ -54,4 +56,6 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build
run: Xvfb :5009 & export DISPLAY=:5009 && mvn -B verify
run: mvn package
- name: Test executable
run: bin.macosx/src/main/resources/bin/PLANTS

0 comments on commit dc006f0

Please sign in to comment.