aboutsummaryrefslogtreecommitdiff
path: root/opal-ci
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-07-22 15:30:34 +1000
committerOliver O'Halloran <oohall@gmail.com>2019-07-26 15:31:41 +1000
commit468a2dc1da2cbfc125ab9563d4ee4ccbf696d7a4 (patch)
tree06d6f12608a257a01a0046cb6cbc9d3308f98a16 /opal-ci
parent5826c0a24856fbdf82933254e9fa229c9410f9a4 (diff)
downloadskiboot-468a2dc1da2cbfc125ab9563d4ee4ccbf696d7a4.zip
skiboot-468a2dc1da2cbfc125ab9563d4ee4ccbf696d7a4.tar.gz
skiboot-468a2dc1da2cbfc125ab9563d4ee4ccbf696d7a4.tar.bz2
travis: remove fedora29
No need to keep old Fedora releases around. Signed-off-by: Stewart Smith <stewart@linux.ibm.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'opal-ci')
-rw-r--r--opal-ci/Dockerfile-fedora299
l---------opal-ci/build-fedora-rawhide.sh2
-rwxr-xr-xopal-ci/build-fedora29.sh30
-rwxr-xr-x[l---------]opal-ci/build-fedora30.sh31
4 files changed, 31 insertions, 41 deletions
diff --git a/opal-ci/Dockerfile-fedora29 b/opal-ci/Dockerfile-fedora29
deleted file mode 100644
index 1fdadd4..0000000
--- a/opal-ci/Dockerfile-fedora29
+++ /dev/null
@@ -1,9 +0,0 @@
-FROM fedora:29
-RUN dnf -y install --allowerasing wget curl xterm gcc git xz make diffutils findutils expect valgrind valgrind-devel ccache dtc openssl-devel
-RUN dnf -y install gcc-powerpc64-linux-gnu
-# below packages are for building dtc
-RUN dnf -y install flex bison
-RUN if [ `arch` = "x86_64" ]; then dnf -y install http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0.f22.x86_64.rpm; fi
-COPY . /build/
-WORKDIR /build
-
diff --git a/opal-ci/build-fedora-rawhide.sh b/opal-ci/build-fedora-rawhide.sh
index fe333f0..6ea4b3f 120000
--- a/opal-ci/build-fedora-rawhide.sh
+++ b/opal-ci/build-fedora-rawhide.sh
@@ -1 +1 @@
-build-fedora29.sh \ No newline at end of file
+build-fedora30.sh \ No newline at end of file
diff --git a/opal-ci/build-fedora29.sh b/opal-ci/build-fedora29.sh
deleted file mode 100755
index 56099d2..0000000
--- a/opal-ci/build-fedora29.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-set -uo pipefail
-set -e
-set -vx
-
-MAKE_J=$(grep -c processor /proc/cpuinfo)
-export CROSS="ccache powerpc64-linux-gnu-"
-
-# There's a bug in dtc v1.4.7 packaged on fedora 28 that makes our device tree
-# tests fail, so for the moment, build a slightly older DTC
-git clone --depth=1 -b v1.4.4 https://git.kernel.org/pub/scm/utils/dtc/dtc.git
-(cd dtc; make -j${MAKE_J})
-export PATH=`pwd`/dtc:$PATH
-
-make -j${MAKE_J} all
-make -j${MAKE_J} check
-(make clean; cd external/gard && CROSS= make -j${MAKE_J})
-(cd external/pflash; make -j${MAKE_J})
-# GCOV build disabled for GCC 8.2
-# https://github.com/open-power/skiboot/issues/206
-#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
diff --git a/opal-ci/build-fedora30.sh b/opal-ci/build-fedora30.sh
index fe333f0..56099d2 120000..100755
--- a/opal-ci/build-fedora30.sh
+++ b/opal-ci/build-fedora30.sh
@@ -1 +1,30 @@
-build-fedora29.sh \ No newline at end of file
+#!/bin/bash
+
+set -uo pipefail
+set -e
+set -vx
+
+MAKE_J=$(grep -c processor /proc/cpuinfo)
+export CROSS="ccache powerpc64-linux-gnu-"
+
+# There's a bug in dtc v1.4.7 packaged on fedora 28 that makes our device tree
+# tests fail, so for the moment, build a slightly older DTC
+git clone --depth=1 -b v1.4.4 https://git.kernel.org/pub/scm/utils/dtc/dtc.git
+(cd dtc; make -j${MAKE_J})
+export PATH=`pwd`/dtc:$PATH
+
+make -j${MAKE_J} all
+make -j${MAKE_J} check
+(make clean; cd external/gard && CROSS= make -j${MAKE_J})
+(cd external/pflash; make -j${MAKE_J})
+# GCOV build disabled for GCC 8.2
+# https://github.com/open-power/skiboot/issues/206
+#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