Skip to content

Commit

Permalink
Fix the CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewL246 committed Dec 29, 2023
1 parent 2cfca4b commit 125a28d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/setup-environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,12 @@ else
info "Skipping 3DS IP address."
fi

# Get the BOSS keys
"$git_base"/scripts/get-boss-keys.sh
# Get the BOSS keys (won't work in CI)
if [ -z "${CI+x}" ]; then
"$git_base"/scripts/get-boss-keys.sh
else
warning "Skipping BOSS keys because this script is running in CI."
fi

# Create a list of important secrets
cat >"$git_base/secrets.txt" <<EOF
Expand Down

0 comments on commit 125a28d

Please sign in to comment.