summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-05-29 16:11:42 +1000
committerStewart Smith <stewart@linux.ibm.com>2018-05-29 16:11:48 +1000
commitbbfd8738319f169070d816304f927cbf11fd685f (patch)
tree29c4d3d379d8fd0b22bf9657dcc4db66bf8b63d8
parent021f6f39b9bfb60e1cda5432bfe6430cb9adfed7 (diff)
downloadtalos-skiboot-bbfd8738319f169070d816304f927cbf11fd685f.tar.gz
talos-skiboot-bbfd8738319f169070d816304f927cbf11fd685f.zip
travis: remove Ubuntu 12.04
It's been EOL since April 2017 (now 13 months ago). Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--.travis.yml1
-rw-r--r--opal-ci/Dockerfile-ubuntu-12.0418
-rwxr-xr-xopal-ci/build-ubuntu-12.04.sh25
3 files changed, 0 insertions, 44 deletions
diff --git a/.travis.yml b/.travis.yml
index 067e4764..b5a021f2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,6 @@ cache: ccache
env:
matrix:
- - RUN_ON_CONTAINER=ubuntu-12.04
- RUN_ON_CONTAINER=ubuntu-16.04
- RUN_ON_CONTAINER=ubuntu-18.04
- RUN_ON_CONTAINER=ubuntu-latest
diff --git a/opal-ci/Dockerfile-ubuntu-12.04 b/opal-ci/Dockerfile-ubuntu-12.04
deleted file mode 100644
index e9f81206..00000000
--- a/opal-ci/Dockerfile-ubuntu-12.04
+++ /dev/null
@@ -1,18 +0,0 @@
-FROM ubuntu:trusty
-ENV DEBIAN_FRONTEND noninteractive
-RUN sudo apt-get update -qq
-RUN sudo apt-get install -y software-properties-common
-RUN sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
-RUN sudo apt-get update -qq
-RUN sudo apt-get install -y gcc-4.8 libstdc++6 valgrind expect xterm ccache expect device-tree-compiler libssl-dev gcc wget curl build-essential gcc python g++ pkg-config libz-dev libglib2.0-dev libpixman-1-dev libfdt-dev git libstdc++6 libtcl8.6
-RUN apt-get update -qq && apt-get install -y gcc-arm-linux-gnueabi || true
-RUN if [ `arch` != "ppc64le" ]; then apt-get update -qq && apt-get install -y gcc-powerpc64le-linux-gnu; fi
-RUN sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50
-RUN curl -L -O 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
-RUN sudo mkdir /opt/cross
-RUN sudo tar -C /opt/cross -xf x86_64-gcc-4.8.0-nolibc_powerpc64-linux.tar.xz
-RUN if [ `arch` = "x86_64" ]; then curl -L -O http://public.dhe.ibm.com/software/server/powerfuncsim/p8/packages/v1.0-2/systemsim-p8_1.0-2_amd64.deb; dpkg -i systemsim-p8_1.0-2_amd64.deb; fi
-RUN if [ `arch` = "x86_64" ]; then curl -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.1-0-trusty_amd64.deb; fi
-COPY . /build/
-WORKDIR /build
-ENTRYPOINT ./opal-ci/build-ubuntu-12.04.sh
diff --git a/opal-ci/build-ubuntu-12.04.sh b/opal-ci/build-ubuntu-12.04.sh
deleted file mode 100755
index 58498edd..00000000
--- a/opal-ci/build-ubuntu-12.04.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-set -uo pipefail
-set -e
-set -vx
-
-export CROSS="ccache /opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/powerpc64-linux-"
-export HOSTCC="ccache gcc-4.8"
-MAKE_J=`grep -c processor /proc/cpuinfo`
-
-make -j${MAKE_J} all
-(cd opal-ci; ./build-qemu-powernv.sh)
-./opal-ci/fetch-debian-jessie-installer.sh
-make -j${MAKE_J} check
-(make clean; cd external/gard && CROSS= make -j${MAKE_J})
-(cd external/pflash; ./build-all-arch.sh)
-make clean
-SKIBOOT_GCOV=1 make -j${MAKE_J}
-SKIBOOT_GCOV=1 make -j${MAKE_J} check
-
-make clean
-rm -rf builddir
-mkdir builddir
-make SRC=`pwd` -f ../Makefile -C builddir -j${MAKE_J}
-make clean
OpenPOWER on IntegriCloud