Skip to content
Closed
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: 6 additions & 0 deletions localinstall/1-rebuild_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ if [ -n "$KCI_CACHE" ]; then
fi
fi

# install virtualenv if necessary
pip install virtualenv
virtualenv .venv
source .venv/bin/activate

# build docker images
# purge docker build cache with confirmation
echo "Purge docker build cache"
Expand All @@ -80,6 +85,7 @@ pipeline_rev=$(git show --pretty=format:%H -s origin/$KCI_PIPELINE_BRANCH)
pipeline_url=$(git remote get-url origin)
cd ..
cd kernelci-core
pip install -r requirements.txt
echo Retrieve Core revision and branch
core_rev=$(git show --pretty=format:%H -s origin/$KCI_CORE_BRANCH)
core_url=$(git remote get-url origin)
Expand Down