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

Update jenkins script #731

Merged
merged 1 commit into from
Mar 2, 2023
Merged
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
6 changes: 3 additions & 3 deletions config/linux/jenkins_dftimewolf_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ set -e
sudo add-apt-repository ppa:gift/dev -y
sudo apt-get update -qq
# Ubuntu 20.04 comes with python 3.8, we only support >= 3.9
sudo apt-get install -y python3-pip python3.9
sudo apt-get install -y python3-pip
sudo apt-get install --reinstall python3-apt
python3 --version
/usr/bin/python3.9 -m pip install poetry
/usr/bin/python3 -m pip install poetry


if [[ "$*" =~ "include-docker" ]]; then
Expand Down Expand Up @@ -85,7 +85,7 @@ fi
# pending resolution of https://github.com/log2timeline/l2tdevtools/issues/595
if [[ "$*" =~ "include-turbinia" ]]; then
echo "Installing Turbinia"
/usr/bin/python3.9 -m pip install turbinia
/usr/bin/python3 -m pip install turbinia
fi

echo "Installing dftimewolf requirements via Poetry"
Expand Down