diff options
| author | Alexander Pickering <alex@cogarr.net> | 2018-06-24 19:28:10 -0600 |
|---|---|---|
| committer | Alexander Pickering <alex@cogarr.net> | 2018-06-24 19:28:10 -0600 |
| commit | 443771b4e1e1fea9e5abb4dd9ee78c9163c2aec3 (patch) | |
| tree | e299b692b3037bf9424eab175f5a0ee306761aeb | |
| parent | 0ffc35b1b7722e834ce6f518ff1d7cf076ea0eed (diff) | |
| parent | e7dd98b985278c6d3cc8d246426d80b361d67a39 (diff) | |
| download | brokengine-443771b4e1e1fea9e5abb4dd9ee78c9163c2aec3.tar.gz brokengine-443771b4e1e1fea9e5abb4dd9ee78c9163c2aec3.tar.bz2 brokengine-443771b4e1e1fea9e5abb4dd9ee78c9163c2aec3.zip | |
Merge branch 'master' of https://gitlab.com/bbblitz/brokengine
| -rw-r--r-- | .gitlab-ci.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d7a7917 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +# This file is a template, and might need editing before it works on your project. +# use the official gcc image, based on debian +# can use verions as well, like gcc:5.2 +# see https://hub.docker.com/_/gcc/ +image: gcc + +build: + stage: build + # instead of calling g++ directly you can also use some build toolkit like make + # install the necessary build tools when needed + # before_script: + # - apt update && apt -y install make autoconf + script: + - make + artifacts: + paths: + - mybinary + # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time + cache: + paths: + - "build/*/*.o" + +# run tests using the binary built before +test: + stage: test + script: + - busted |
