Skip to content

Commit

Permalink
chore(build): Skip tests as part of building the binaries
Browse files Browse the repository at this point in the history
Setting up a macOS runner and a Windows runner that have a GUI is probably going to take ages.
  • Loading branch information
mthmulders committed May 22, 2023
1 parent d987cbf commit 1977c76
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ jobs:

- name: Build static native image for Linux
run: |
PATH=${TOOLCHAIN_DIR}/bin:$PATH; mvn -B -Pnative package
# Yikes, skipTests?! Well, we run those tests on the Ubuntu runner, which should be enough.
# Setting up a macOS runner and a Windows runner that have a GUI is probably going to take ages.
PATH=${TOOLCHAIN_DIR}/bin:$PATH; mvn -B -Pnative package -DskipTests
env:
TOOLCHAIN_DIR: ${{ steps.prepare-musl.outputs.TOOLCHAIN_DIR }}
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 1977c76

Please sign in to comment.