Skip to content

Commit

Permalink
travis: remove fedora29
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
stewartsmith authored and oohal committed Jul 26, 2019
1 parent 5826c0a commit 468a2dc
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 42 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,6 @@ env:
- RUN_ON_CONTAINER=ubuntu-18.04
- RUN_ON_CONTAINER=ubuntu-latest
- RUN_ON_CONTAINER=centos7
- RUN_ON_CONTAINER=fedora29
- RUN_ON_CONTAINER=fedora30
- RUN_ON_CONTAINER=fedora-rawhide
- RUN_ON_CONTAINER=debian-stretch
Expand Down
9 changes: 0 additions & 9 deletions opal-ci/Dockerfile-fedora29

This file was deleted.

2 changes: 1 addition & 1 deletion opal-ci/build-fedora-rawhide.sh
30 changes: 0 additions & 30 deletions opal-ci/build-fedora29.sh

This file was deleted.

1 change: 0 additions & 1 deletion opal-ci/build-fedora30.sh

This file was deleted.

30 changes: 30 additions & 0 deletions opal-ci/build-fedora30.sh
@@ -0,0 +1,30 @@
#!/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

0 comments on commit 468a2dc

Please sign in to comment.