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

Install xz where fuzzfetch is used #562

Merged
merged 1 commit into from
Nov 27, 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
3 changes: 2 additions & 1 deletion recipes/linux/fuzzfetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ case "${1-install}" in
sys-embed \
ca-certificates \
lbzip2 \
python3
python3 \
xz-utils
apt-install-auto \
git \
pipx
Expand Down
2 changes: 0 additions & 2 deletions services/gr-css-reports/launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export {GIT_AUTHOR_NAME,GIT_COMMITTER_NAME}="Taskcluster Automation"
# Install prefpicker
retry python3 -m pip install git+https://github.com/MozillaSecurity/prefpicker.git

# Install fuzzfetch
retry python3 -m pip install git+https://github.com/MozillaSecurity/fuzzfetch.git
# Fetch build
retry python3 -m fuzzfetch -a --fuzzing -n nightly

Expand Down
7 changes: 7 additions & 0 deletions services/gr-css-reports/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ set -e
set -x
set -o pipefail

# shellcheck source=recipes/linux/common.sh
source "${0%/*}/common.sh"

# Install deps
sys-update
"${0%/*}/fuzzfetch.sh"

# Cleanup grizzly scripts
rm /home/worker/launch-grizzly*

Expand Down
1 change: 1 addition & 0 deletions services/grizzly/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ packages=(
ubuntu-restricted-addons
vulkan-validationlayers
wget
xz-utils
zip
zstd
)
Expand Down
1 change: 1 addition & 0 deletions services/nyx/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pkgs=(
psmisc
python3
xvfb
xz-utils
zstd
)

Expand Down