Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path issues with image updates. #546

Merged
merged 2 commits into from
Nov 6, 2024
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
2 changes: 2 additions & 0 deletions services/libfuzzer/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ cd "$WORKDIR" || exit
# shellcheck source=recipes/linux/common.sh
source ~/.local/bin/common.sh

PATH="$PATH:$HOME/.local/bin"

# Setup required coverage environment variables.
export COVERAGE=1

Expand Down
4 changes: 2 additions & 2 deletions services/libfuzzer/libfuzzer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ cd "$WORKDIR" || exit
# shellcheck source=recipes/linux/common.sh
source ~/.local/bin/common.sh

PATH="$PATH:$HOME/.local/bin"

gcs-cat () {
# gcs-cat bucket path
/opt/pipx/venvs/guided-fuzzing-daemon/bin/python - "$1" "$2" << "EOF"
Expand Down Expand Up @@ -245,8 +247,6 @@ fi

# %<---[Sanitizer]------------------------------------------------------------

export ASAN_SYMBOLIZER_PATH=/usr/bin/llvm-symbolizer

ASAN_OPTIONS=\
print_scariness=true:\
strip_path_prefix=/builds/worker/workspace/build/src/:\
Expand Down
1 change: 1 addition & 0 deletions services/nyx/launch-worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ id
ls -l /dev/kvm

COVERAGE="${COVERAGE-0}"
PATH="$PATH:$HOME/.local/bin"

# shellcheck source=recipes/linux/common.sh
source "/srv/repos/setup/common.sh"
Expand Down
Loading