GIT_STRATEGY: none
Hi,
I have gitlab-ci-multi-runner 1.9.0 (82714ae)
and have stages which have GIT_STRATEGY: none
are failing.
Running with gitlab-ci-multi-runner 1.9.0 (82714ae)
Using Shell executor...
Running on WAHMED...
Skipping Git repository setup
ERROR: Build failed: exit status 1
cache:
key: "%CI_BUILD_REF%"
paths:
- build/
stages:
- build
- test
- release
build:
stage: build
script:
- 'build.bat'
test:
stage: test
variables:
GIT_STRATEGY: none
script:
- ''
.release_Tpl: &release_base
stage: release
when: manual
variables:
GIT_STRATEGY: none
artifacts:
name: "%CI_BUILD_ID%"
paths:
- build/
expire_in: 1 mos
xAnyCPU:
<<: *release_base
script:
- 'build.bat -target=xAnyCPU -output=Y'
x64:
<<: *release_base
script:
- 'build.bat -target=x64 -output=Y'
x86:
<<: *release_base
script:
- 'build.bat -target=x86 -output=Y'
GitLab 8.15.0
GitLab Shell 4.1.1
GitLab Workhorse v1.2.1
GitLab API v3
Git 2.8.4
Ruby 2.3.3p222
Rails 4.2.7.1
PostgreSQL 9.6.1