mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
99127d20ce
- Coverity scan analysis tasks run as scheduled cron jobs - Stage separation for Build, Test and Coverity scan phase - Travis CI now uses Fedora container to build and run tests - Containers are accessible from Docker Hub and failed builds can be reproduced and examined - coverity.sh: separate build and upload
21 lines
574 B
Bash
Executable File
21 lines
574 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Download and install docker-remote
|
|
# Sets up venv folder
|
|
# Notes: run with sudo command
|
|
|
|
# Make sure python3 is installed and install git and virtual environment
|
|
sudo apt-get update && sudo apt-get -y install python3 python3-pip git
|
|
sudo apt-get install -y $(apt-cache search venv | cut -d' ' -f 1)
|
|
|
|
# Get the tool from github and install it
|
|
git clone https://github.com/CermakM/docker-remote.git
|
|
|
|
# We need to setup virtual environment here to solve disable_warning issue
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
|
|
pushd docker-remote
|
|
pip install .
|
|
popd
|