diff options
author | Michal Sekletar <msekleta@redhat.com> | 2018-06-01 09:56:13 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2018-06-04 19:14:37 +0200 |
commit | 3f4b547a55f4fd2599df5101d4be3b95fe0222c4 (patch) | |
tree | ca6bb65b9114f1237c1caecfbbf0d750bbb8969f /travis-ci/tools/get-docker-remote.sh | |
parent | conf-parser: fix memleak (#9177) (diff) | |
download | systemd-3f4b547a55f4fd2599df5101d4be3b95fe0222c4.tar.xz systemd-3f4b547a55f4fd2599df5101d4be3b95fe0222c4.zip |
travis: use Travis CI only for running scheduled Coverity scans
Building and testing of systemd on Fedora Rawhide is now handled by
dedicated Fedora CI. We don't need to duplicate this in Travis CI.
Diffstat (limited to '')
-rwxr-xr-x | travis-ci/tools/get-docker-remote.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/travis-ci/tools/get-docker-remote.sh b/travis-ci/tools/get-docker-remote.sh deleted file mode 100755 index 55bc29e7b1..0000000000 --- a/travis-ci/tools/get-docker-remote.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 |