SnipeitPS/.gitlab-ci.yml
Stephen Maunder 783c6b0a6a Fix yaml
2017-12-31 20:25:40 +00:00

18 lines
280 B
YAML

stages:
- test
- release
variables:
GIT_SSL_NO_VERIFY: "true"
ErrorActionPreference: STOP
Test:
stage: test
script:
- .\build.ps1 -Tasks 'test'
except:
- master
Release:
stage: release
script:
- .\build.ps1 -Tasks 'test','release'
only:
- master