From 86ee7bcdfe8d2aca2ce9915c29d43bb1de73a6b6 Mon Sep 17 00:00:00 2001 From: altorg Date: Sat, 19 Aug 2017 11:01:28 -0700 Subject: [PATCH] Create buildspec.yml --- buildspec.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..f202683 --- /dev/null +++ b/buildspec.yml @@ -0,0 +1,24 @@ +version: 0.1 + +env: + variables: + NONEED: "/bin/true" + +phases: + install: + commands: + - echo Nothing + pre_build: + commands: + - echo Nothing to do in the pre_build phase... + build: + commands: + - echo Build started on `date` + - make + post_build: + commands: + - echo Build completed on `date` +artifacts: + files: + - dgamelaunch + discard-paths: yes -- 2.47.3