Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ jobs:
echo "=============== FreeBSD End install ====================="

run: |
set -e
echo "=============== FreeBSD Start Deps ====================="
./ci/common.deps.sh && echo "=============== FreeBSD Deps Success ====================="
echo "=============== FreeBSD Start Build ====================="
./ci/freebsd.build.sh && echo "=============== FreeBSD Build Success ====================="
./ci/freebsd.build.sh
echo "=============== FreeBSD Build Success ====================="
echo "=============== FreeBSD End Build ====================="
8 changes: 7 additions & 1 deletion ci/freebsd.build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
# The options have to be set here, not on the shebang line: env(1) does not
# split its first operand, so "#!/usr/bin/env bash -e" looks for a program
# literally named "bash -e" and exits 127 before running a single line.
# Note that bash is /usr/local/bin/bash on FreeBSD, hence env rather than the
# "#!/bin/bash -e" the other ci/*.build.sh use.
set -e

export SCORE_DIR=$PWD

Expand Down
Loading