Added deployment pipeline

This commit is contained in:
Bastian de Byl
2019-07-24 13:37:58 -04:00
parent 30d90545bf
commit 4105c26cac

15
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,15 @@
stages:
- build
- deploy
build:
stage: build
script:
- make -e build
deploy:
stage: deploy
script:
- make -e deploy
only:
- master