Skip to content
Snippets Groups Projects

Adding .gitlab-ci.yml for commits to master. ES-99

Merged David Mondou requested to merge feature/ci into master
2 files
+ 42
0
Compare changes
  • Side-by-side
  • Inline
Files
2
.gitlab-ci.yml 0 → 100644
+ 26
0
#Execute repo sync and run vesta-300-developer build
stages:
- setup
- build
- shutdown
setup:
stage: setup
only:
- master
script:
- docker start vesta-builds
build:
stage: build
only:
- master
script:
- docker exec -i vesta-builds bash < build.sh
shutdown:
stage: shutdown
only:
- master
script:
- docker stop vesta-builds
Loading