Commit 06b7616c authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'fix-windows-shared-runners-example' into 'master'

Fix CI yaml example for Windows Shared Runners

See merge request gitlab-org/gitlab!23469
parents 283edae7 083858b2
...@@ -218,8 +218,11 @@ You can follow our work towards this goal in the ...@@ -218,8 +218,11 @@ You can follow our work towards this goal in the
The full contents of our `config.toml` are: The full contents of our `config.toml` are:
NOTE: **Note:**
Settings that are not public are shown as `X`.
```toml ```toml
concurrent = 10 concurrent = X
check_interval = 3 check_interval = 3
[[runners]] [[runners]]
...@@ -291,8 +294,8 @@ stages: ...@@ -291,8 +294,8 @@ stages:
- test - test
before_script: before_script:
- date +"%H" - Set-Variable -Name "time" -Value (date -Format "%H:%m")
- echo ${HOUR} - echo ${time}
- echo "started by ${GITLAB_USER_NAME}" - echo "started by ${GITLAB_USER_NAME}"
build: build:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment