summaryrefslogtreecommitdiff
path: root/travis-ci
diff options
context:
space:
mode:
authorMichal Sekletar <msekleta@redhat.com>2018-06-01 09:56:13 +0200
committerEvgeny Vereshchagin <evvers@ya.ru>2018-06-04 20:14:37 +0300
commit3f4b547a55f4fd2599df5101d4be3b95fe0222c4 (patch)
treeca6bb65b9114f1237c1caecfbbf0d750bbb8969f /travis-ci
parentc0d72c4313df955e63a1e02c35b929a6d5dcb21b (diff)
downloadsystemd-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-xtravis-ci/scripts/build-docker-image.sh2
-rwxr-xr-xtravis-ci/tools/get-docker-remote.sh20
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 5d4333a95b..81c7f792bc 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 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