diff options
author | Michal Sekletar <msekleta@redhat.com> | 2018-06-01 09:56:13 +0200 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2018-06-04 20:14:37 +0300 |
commit | 3f4b547a55f4fd2599df5101d4be3b95fe0222c4 (patch) | |
tree | ca6bb65b9114f1237c1caecfbbf0d750bbb8969f /travis-ci | |
parent | conf-parser: fix memleak (#9177) (diff) | |
download | systemd-3f4b547a55f4fd2599df5101d4be3b95fe0222c4.tar.gz systemd-3f4b547a55f4fd2599df5101d4be3b95fe0222c4.tar.bz2 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 'travis-ci')
-rwxr-xr-x | travis-ci/scripts/build-docker-image.sh | 2 | ||||
-rwxr-xr-x | travis-ci/tools/get-docker-remote.sh | 20 |
2 files changed, 1 insertions, 21 deletions
diff --git a/travis-ci/scripts/build-docker-image.sh b/travis-ci/scripts/build-docker-image.sh index 5d4333a95..81c7f792b 100755 --- a/travis-ci/scripts/build-docker-image.sh +++ b/travis-ci/scripts/build-docker-image.sh @@ -11,4 +11,4 @@ docker build \ --build-arg DOCKER_USER=$USER \ --build-arg DOCKER_USER_UID=`id -u` \ --build-arg DOCKER_USER_GID=`id -g` \ ---force-rm -t ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} --pull=true . +--force-rm -t coverity-${TRAVIS_COMMIT} --pull=true . diff --git a/travis-ci/tools/get-docker-remote.sh b/travis-ci/tools/get-docker-remote.sh deleted file mode 100755 index 55bc29e7b..000000000 --- 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 |