diff mbox series

opal-ci: Drop CentOS6 support

Message ID 20190305051045.28035-1-stewart@linux.ibm.com
State Accepted
Headers show
Series opal-ci: Drop CentOS6 support | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch success master/apply_patch Successfully applied
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot success Test snowpatch/job/snowpatch-skiboot on branch master
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot-dco success Signed-off-by present

Commit Message

Stewart Smith March 5, 2019, 5:10 a.m. UTC
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>
---
 opal-ci/Dockerfile-centos6 | 10 ----------
 opal-ci/build-centos6.sh   | 28 ----------------------------
 2 files changed, 38 deletions(-)
 delete mode 100644 opal-ci/Dockerfile-centos6
 delete mode 100755 opal-ci/build-centos6.sh

Comments

Stewart Smith March 15, 2019, 3:44 a.m. UTC | #1
Stewart Smith <stewart@linux.ibm.com> writes:
> 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>
> ---
>  opal-ci/Dockerfile-centos6 | 10 ----------
>  opal-ci/build-centos6.sh   | 28 ----------------------------
>  2 files changed, 38 deletions(-)
>  delete mode 100644 opal-ci/Dockerfile-centos6
>  delete mode 100755 opal-ci/build-centos6.sh

Merged to master as of 2b96407921a66544f7c677338a6d8aaa267ebdbf
diff mbox series

Patch

diff --git a/opal-ci/Dockerfile-centos6 b/opal-ci/Dockerfile-centos6
deleted file mode 100644
index 263a98e76977..000000000000
--- 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 bf6e73a68b6d..000000000000
--- 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