We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8549ecb commit 44aa443Copy full SHA for 44aa443
buildspec.yml
@@ -7,15 +7,15 @@ phases:
7
- apt-get install -y software-properties-common
8
- add-apt-repository -y ppa:ubuntu-toolchain-r/test
9
- apt-get update -y
10
- - apt-get install -y g++-5 flex bison make git libwww-perl patch
+ - apt-get install -y g++-5 flex bison make git libwww-perl patch ccache
11
- apt-get install -y openjdk-7-jdk
12
- update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 1
13
- update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 1
14
build:
15
commands:
16
- echo Build started on `date`
17
- (cd src ; make minisat2-download)
18
- - (cd src ; make -j2)
+ - (cd src ; make CXX="ccache g++" -j2)
19
post_build:
20
21
- echo Build completed on `date`
0 commit comments