blob: 4e3275ecf2249df4346fbbc29745a6b45775a412 [file] [log] [blame] [edit]
version: 0.2
#this buildspec assumes the ubuntu aws/codebuild/java:openjdk-8 image
phases:
install:
commands:
- sudo apt-get update -y
- sudo apt-get install clang-3.9 cmake3 ninja-build -y
pre_build:
commands:
- export CC=clang-3.9
build:
commands:
- echo Build started on `date`
- $CODEBUILD_SRC_DIR/codebuild/common-linux.sh -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
post_build:
commands:
- echo Build completed on `date`
artifacts:
discard-paths: yes
files:
- 'target/surefire-reports/**'
- 'hs_err_pid*'
- 'core*'