aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-03-05 17:19:15 +1100
committerStewart Smith <stewart@linux.ibm.com>2019-03-15 14:31:30 +1100
commit7cd8402c3bec9bcd99dfcc857a6b8ca12569a07b (patch)
tree2cc75da5261ac8a002cbb097becd2763f97a31d2 /.travis.yml
parente4a06f098c4f34fb5539129dddb6646667f4d5ab (diff)
downloadskiboot-7cd8402c3bec9bcd99dfcc857a6b8ca12569a07b.zip
skiboot-7cd8402c3bec9bcd99dfcc857a6b8ca12569a07b.tar.gz
skiboot-7cd8402c3bec9bcd99dfcc857a6b8ca12569a07b.tar.bz2
Drop old Coverity jobs (we build via separate .travis.yml in a branch)
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml26
1 files changed, 2 insertions, 24 deletions
diff --git a/.travis.yml b/.travis.yml
index e027d3c..b48d6fb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,27 +36,5 @@ services: docker
dist: trusty
script:
- - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then
- docker build --pull -t ${RUN_ON_CONTAINER} -f opal-ci/Dockerfile-${RUN_ON_CONTAINER} . &&
- docker run --volume $HOME/.ccache:/root/.ccache --volume `pwd`:/build --rm -t $RUN_ON_CONTAINER bash -c "./opal-ci/build-${RUN_ON_CONTAINER}.sh";
- fi
- - if [ ${COVERITY_SCAN_BRANCH} == 1 ]; then
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test &&
- sudo apt-get update -qq &&
- sudo apt-get install -y gcc-4.8 libstdc++6 valgrind expect xterm &&
- sudo apt-get install -y gcc-arm-linux-gnueabi gcc-powerpc64le-linux-gnu gcc &&
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50 &&
- wget https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/4.8.0/x86_64-gcc-4.8.0-nolibc_powerpc64-linux.tar.xz &&
- sudo mkdir /opt/cross &&
- sudo tar -C /opt/cross -xvf x86_64-gcc-4.8.0-nolibc_powerpc64-linux.tar.xz;
- fi
-
-addons:
- coverity_scan:
- project:
- name: "open-power/skiboot"
- description: "Build submitted via Travis CI"
- notification_email: stewart@linux.vnet.ibm.com
- build_command_prepend: "cov-configure --comptype gcc --compiler powerpc64-linux-gcc --template; cov-configure --comptype gcc --compiler powerpc64le-linux-gnu-gcc; cov-configure --comptype gcc --compiler arm-linux-gnueabi-gcc; cov-configure --comptype gcc --compiler x86_64-linux-gnu-gcc"
- build_command: "make -j4 all check"
- branch_pattern: coverity_scan
+ - docker build --pull -t ${RUN_ON_CONTAINER} -f opal-ci/Dockerfile-${RUN_ON_CONTAINER} . &&
+ docker run --volume $HOME/.ccache:/root/.ccache --volume `pwd`:/build --rm -t $RUN_ON_CONTAINER bash -c "./opal-ci/build-${RUN_ON_CONTAINER}.sh";