Skip to content

Commit

Permalink
Fix annotations file path
Browse files Browse the repository at this point in the history
  • Loading branch information
aherrmann committed Oct 30, 2024
1 parent 7181c3d commit 62b3f8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/persistent_worker/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ echo "::endgroup::" >&2

echo "::group::Remote build without persistent worker" >&2
if [[ -z ${BUILDBUDDY_API_KEY:+x} ]]; then
echo "::notice file=${BASH_SOURCE[0]},line=${LINENO}::SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md" >&2
echo "::notice file=$(realpath --relative-to=../.. ${BASH_SOURCE[0]}),line=${LINENO}::SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md" >&2

Check notice on line 54 in examples/persistent_worker/test.sh

View workflow job for this annotation

GitHub Actions / linux-build-examples

SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md
else
echo '<file:.buckconfig.buildbuddy>' > .buckconfig.local
buck2 clean; buck2 build : -vstderr
Expand Down Expand Up @@ -79,7 +79,7 @@ echo "::endgroup::" >&2

echo "::group::Remote build with persistent worker" >&2
if [[ -z ${BUILDBUDDY_API_KEY:+x} ]]; then
echo "::notice file=${BASH_SOURCE[0]},line=${LINENO}::SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md" >&2
echo "::notice file=$(realpath --relative-to=../.. ${BASH_SOURCE[0]}),line=${LINENO}::SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md" >&2

Check notice on line 82 in examples/persistent_worker/test.sh

View workflow job for this annotation

GitHub Actions / linux-build-examples

SKIPPED Missing BuildBuddy token. See examples/persistent_worker/README.md
else
echo '<file:.buckconfig.buildbuddy-persistent-workers>' > .buckconfig.local
buck2 clean; buck2 build : -vstderr
Expand Down

0 comments on commit 62b3f8a

Please sign in to comment.