version: 0.2 #this build spec assumes the ubuntu aws/codebuild/java:openjdk-8 image phases: install: commands: - sudo apt-get update -y - sudo apt-get install gcc cmake3 ninja-build -y pre_build: commands: - export CC=gcc build: commands: - echo Build started on `date` - $CODEBUILD_SRC_DIR/codebuild/common-linux.sh post_build: commands: - echo Build completed on `date` artifacts: discard-paths: yes files: - 'target/surefire-reports/**' - 'hs_err_pid*' - 'core*'