diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2019-03-05 16:10:45 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-03-15 14:31:30 +1100 |
commit | 2b96407921a66544f7c677338a6d8aaa267ebdbf (patch) | |
tree | a51a4595c023a98a01a08fdfafca1ad810a2a7c3 /opal-ci | |
parent | 961b7128ebd86dc7054f1483a17cdbc6ab3540ad (diff) | |
download | skiboot-2b96407921a66544f7c677338a6d8aaa267ebdbf.zip skiboot-2b96407921a66544f7c677338a6d8aaa267ebdbf.tar.gz skiboot-2b96407921a66544f7c677338a6d8aaa267ebdbf.tar.bz2 |
opal-ci: Drop CentOS6 support
We use the same compiler on our CentOS7 image, and it has the bonus of
being able to test against P8 and P9 Mambo.
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'opal-ci')
-rw-r--r-- | opal-ci/Dockerfile-centos6 | 10 | ||||
-rwxr-xr-x | opal-ci/build-centos6.sh | 28 |
2 files changed, 0 insertions, 38 deletions
diff --git a/opal-ci/Dockerfile-centos6 b/opal-ci/Dockerfile-centos6 deleted file mode 100644 index 263a98e..0000000 --- a/opal-ci/Dockerfile-centos6 +++ /dev/null @@ -1,10 +0,0 @@ -FROM centos:6 -RUN yum -y update && yum clean all -RUN yum -y install wget curl xterm gcc git xz ccache dtc openssl-devel -RUN 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 -RUN mkdir /opt/cross -RUN tar -C /opt/cross -xf x86_64-gcc-4.8.0-nolibc_powerpc64-linux.tar.xz -RUN curl -L -O http://public.dhe.ibm.com/software/server/powerfuncsim/p8/packages/v1.0-2/systemsim-p8-1.0-2.el6.x86_64.rpm -RUN yum -y install systemsim-p8-1.0-2.el6.x86_64.rpm -COPY . /build/ -WORKDIR /build diff --git a/opal-ci/build-centos6.sh b/opal-ci/build-centos6.sh deleted file mode 100755 index bf6e73a..0000000 --- a/opal-ci/build-centos6.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -set -uo pipefail -set -e -set -vx - -# We're fairly limited as to what we want to bother to run on CentOS6 -# It's fairly old and some of the things (e.g. build+run qemu) we don't -# want to bother doing. - -export CROSS=/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/powerpc64-linux- - -MAKE_J=`grep -c processor /proc/cpuinfo` - -make -j${MAKE_J} all -# Disable 'make check' for now, some errors with gcc 4.ancient -#make -j${MAKE_J} check -#(make clean; cd external/gard && CROSS= make -j${MAKE_J}) -#(cd external/pflash; make -j${MAKE_J}) -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 |