Skip to content

Commit

Permalink
CI: tweak build script to satisfy Windows node
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Nov 7, 2023
1 parent 43164ba commit 865d053
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/sh
curl -fsLO https://raw.githubusercontent.com/scijava/scijava-scripts/master/ci-build.sh
chmod +x ci-build.sh

# NB: Only the Linux CI node should deploy build artifacts.
NO_DEPLOY=$(test "$(uname)" = Linux || echo 1) sh ci-build.sh
export NO_DEPLOY=$(test "$(uname)" = Linux || echo 1)

./ci-build.sh

0 comments on commit 865d053

Please sign in to comment.