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 53b6733
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/bin/sh
#!/bin/bash
echo "Downloading ci-build script..."
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)

echo "Running ci-build script..."
./ci-build.sh

0 comments on commit 53b6733

Please sign in to comment.