Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (3)
(chore): add qa stage to engine
· c85a8b22
Mark Harding
authored
Sep 30, 2019
c85a8b22
(chore): do not allow failure
· 3a5a89eb
Mark Harding
authored
Sep 30, 2019
3a5a89eb
Merge remote-tracking branch 'origin/master' into epic/permissions-28
· 1adc33a5
Brian Hatchet
authored
Oct 01, 2019
1adc33a5
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
1adc33a5
...
...
@@ -9,6 +9,7 @@ stages:
-
prepare
-
review
-
deploy:staging
-
qa
-
deploy:canary
-
deploy:production
...
...
@@ -127,6 +128,17 @@ review:stop:
-
master
-
test/gitlab-ci
qa:manual
:
stage
:
qa
script
:
-
echo "Manually approved"
when
:
manual
only
:
refs
:
-
master
-
test/gitlab-ci
allow_failure
:
false
staging:fpm
:
stage
:
deploy:staging
image
:
minds/ci:latest
...
...