File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 0.2
2
+
3
+ env :
4
+ variables :
5
+ # CodeBuild console doesn't display color codes correctly
6
+ TESTPL_COLOR_OUTPUT : 0
7
+
8
+ phases :
9
+ install :
10
+ commands :
11
+ - sed -i 's#/archive.ubuntu.com#/us-east-1.ec2.archive.ubuntu.com#g' /etc/apt/sources.list
12
+ - apt-get update -y
13
+ - apt-get install -y clang-3.8 flex bison make git libwww-perl patch ccache libc6-dev-i386 jq openjdk-8-jdk
14
+ build :
15
+ commands :
16
+ - echo Build started on `date`
17
+ - git submodule update --init --recursive
18
+ - make -C src CXX='ccache /usr/bin/clang++-3.8' CXX_FLAGS='-Qunused-arguments -DDEBUG'
19
+ - make -C jbmc/src CXX='ccache /usr/bin/clang++-3.8' CXX_FLAGS='-Qunused-arguments -DDEBUG'
20
+ post_build :
21
+ commands :
22
+ - echo Build completed on `date`
23
+ cache :
24
+ paths :
25
+ - ' /var/cache/apt/**/*'
26
+ - ' /var/lib/apt/lists/**/*'
27
+ - ' /root/.ccache/**/*'
You can’t perform that action at this time.
0 commit comments