Skip to content

Commit

Permalink
travis/opal-ci: enable ccache for everything
Browse files Browse the repository at this point in the history
caching most of skiboot build, saves us maybe a minute

Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
  • Loading branch information
stewartsmith committed Nov 24, 2016
1 parent 930fa2c commit 1ed90e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion opal-ci/build-fedora24.sh
Expand Up @@ -5,7 +5,7 @@ set -e
set -x

MAKE_J=`grep -c processor /proc/cpuinfo`
export CROSS=powerpc64-linux-gnu-
export CROSS="ccache powerpc64-linux-gnu-"

make -j${MAKE_J} all
make -j${MAKE_J} check
Expand Down
4 changes: 2 additions & 2 deletions opal-ci/build-ubuntu-12.04.sh
Expand Up @@ -3,8 +3,8 @@
set -uo pipefail
set -e

export CROSS=/opt/cross/gcc-4.8.0-nolibc/powerpc64-linux/bin/powerpc64-linux-
export HOSTCC=gcc-4.8
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
Expand Down
2 changes: 1 addition & 1 deletion opal-ci/build-ubuntu-16.04.sh
Expand Up @@ -5,7 +5,7 @@ set -e

MAKE_J=`grep -c processor /proc/cpuinfo`

export CROSS=powerpc64le-linux-gnu-
export CROSS="ccache powerpc64le-linux-gnu-"

make -j${MAKE_J} all
(cd opal-ci; ./build-qemu-powernv.sh)
Expand Down

0 comments on commit 1ed90e2

Please sign in to comment.