Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorKamil Trzciński <ayufan@ayufan.eu>2019-08-27 13:30:44 +0300
committerKamil Trzciński <ayufan@ayufan.eu>2019-08-27 13:30:44 +0300
commit7efafa601f345e0a9f44639e77f8e5769e48d996 (patch)
treebce70390c5bfb30fd33b61432943883d2b87f991 /doc/ci
parent190dba6de93a52487ac86d71a468b88fd88aecaf (diff)
parent529564406378490786f8aafb040d03b60aafb998 (diff)
Merge branch 'docs-update-needs-example' into 'master'
Update the syntax of DAG example See merge request gitlab-org/gitlab-ce!32137
Diffstat (limited to 'doc/ci')
-rw-r--r--doc/ci/yaml/README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md
index 5237c61f191..1368764bcf8 100644
--- a/doc/ci/yaml/README.md
+++ b/doc/ci/yaml/README.md
@@ -1820,19 +1820,19 @@ mac:build:
linux:rspec:
stage: test
- needs: [linux:build]
+ needs: ["linux:build"]
linux:rubocop:
stage: test
- needs: [linux:build]
+ needs: ["linux:build"]
mac:rspec:
stage: test
- needs: [mac:build]
+ needs: ["mac:build"]
mac:rubocop:
stage: test
- needs: [mac:build]
+ needs: ["mac:build"]
production:
stage: deploy