summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml (unfollow)
Commit message (Expand)AuthorFilesLines
2019-08-07Update AWS autoscaling docs•••I'm adding a note about the supported base operating systems for Docker Machine. Cody West1-1/+2
2019-08-06authConfigs can not be nil because it is created using make above.Alexander Kutelev1-4/+0
2019-08-05Removed suspicious condition which is always true.Alexander Kutelev1-4/+2
2019-08-05Change CI_COMMIT_REF to CI_COMMIT_SHA in docsStefan Schmalzhaf1-9/+9
2019-08-05Add test for <at> and <colon> maskingZeff Morgan1-4/+4
2019-08-02Update reference to CI_COMMIT_REF to CI_COMMIT_SHAElliot Rushton1-1/+1
2019-08-01Remove need for externally configured variableEvan Read1-0/+1
2019-07-31Update github.com/imdario/mergo versionTomasz Maczukin21-59/+969
2019-07-31Add configuration template file support for registration commandTomasz Maczukin2-21/+249
2019-07-31Refactor registration command testsTomasz Maczukin1-22/+26
2019-07-30Update test assertion•••We are putting a timeout of 1 millisecond, and the timeout happens it can be on different part of the http stack, for example reading headers, reading body which can return two different kind of errors: `net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)` and `net/http: request canceled (Client.Timeout)`, we just want to make sure it timed out and not on what it timed out. This test causes some flakiness in CI: - https://gitlab.com/gitlab-org/gitlab-runner/pipelines/73498489 - https://gitlab.com/gitlab-org/gitlab-runner/pipelines/73729522 Steve Azzopardi1-1/+1
2019-07-30Prevent running multiple instances of the gitlab-runner process using the sam...Tomasz Maczukin17-2/+1250
2019-07-29Switch to DinD TLS for GitLab CI•••With Docker 19.03 TLS is [enabled by default](https://hub.docker.com/_/docker/#tls), specify the `DOCKER_TLS_CERTDIR` variable so we start using it since all runners mount `/certs/client` automatically. Steve Azzopardi1-5/+8
2019-07-29Remove unused method from commands/config.goTomasz Maczukin1-14/+0
2019-07-29Cleanup commands/config.goTomasz Maczukin1-3/+8
2019-07-29Drop support for Bash shell on Windows until long running issue is addressedBen Bodenmiller1-1/+4
2019-07-25Quarantine windows testsSteve Azzopardi2-0/+892
2019-07-25fix typoMichiel Crefcoeur1-1/+1
2019-07-25Filter another Windows flacky testsTomasz Maczukin2-2/+16
2019-07-25Update tracked Windows tests failures listTomasz Maczukin2-46/+64
2019-07-25Add docs for tls_verify config field•••`tls_verify` is missing from the config options for the Docker executor. Steve Azzopardi1-0/+1
2019-07-25Quarantine more windows tests•••These failures are seen in: https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72809013 https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72809103 Steve Azzopardi2-0/+20
2019-07-25Fix PowerShell capitalizationBen Bodenmiller1-1/+1
2019-07-25Expand markdown lint rules in runnerMarcel Amirault1-1/+2
2019-07-24Update Windows test failures•••Add two new tests that are flaky and causing pipelines to fail when the change is unrelated. These failures are seen in: https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72607563 https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72602945 https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72514675 https://gitlab.com/gitlab-org/gitlab-runner/pipelines/72414229 Steve Azzopardi2-0/+26
2019-07-24Fix typo and spacing in two runner docsMarcel Amirault2-2/+2
2019-07-23Fix custom executor default config on register•••The config for the Custom executor is not being nullified so it ends up being populated for every new executor that the user registers. closes https://gitlab.com/gitlab-org/gitlab-runner/issues/4510 Steve Azzopardi1-0/+5
2019-07-23docs: gitlab-runner helper image has no arm64 build yetNeroBurner1-1/+1
2019-07-23Update docs to specify default shell of OS•••In https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1406 we changed the default shell for Windows to PowerShell for new registered Runners. It was suggested by users that the documentation is not very clear about it https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1406#note_194070467. Steve Azzopardi1-4/+10
2019-07-23Fix markdown in runner docs•••Fix many small issues with markdown, mostly whitespace changes to codeblocks, trailing spaces, indentation, part 2 Marcel Amirault11-305/+321
2019-07-23Fix markdown in runner docs•••Fix many small issues with markdown, mostly whitespace changes to codeblocks, trailing spaces, indentation, part 1 Marcel Amirault13-347/+352
2019-07-23Add requirements for contributing new hardware architecturesElliot Rushton1-0/+17
2019-07-23Further clarify Docker requirementsEvan Read2-6/+6
2019-07-22Update index.md•••Downgrade Docker version, v1.5 doesn't exist, most recent is 1.13.0 Evan Read1-1/+1
2019-07-20Typo and fix Customer -> CustomAndrew Greenwood1-3/+3
2019-07-19Merge changelog from 12-1-stable•••Part of https://gitlab.com/gitlab-org/gitlab-runner/issues/4448#at-20th-the-release-day-of-gitlab-runner Steve Azzopardi1-1/+2
2019-07-19Reorder methods in abstract.go to bring calees closer to the callersTomasz Maczukin1-138/+138
2019-07-19Explain configuration for windows-service•••fixes #1048 Stefan Schmalzhaf1-3/+9
2019-07-19Add libvirt Custom executor example•••reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4257 Steve Azzopardi2-0/+235
2019-07-18Fix some linting issuesSimon Jürgensmeyer20-35/+70
2019-07-18Add CI job checking changes in Windows tests failuresTomasz Maczukin5-0/+332
2019-07-18Make it clear what is the default shell for Windows•••It was suggested in https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/1406#note_190409847 that it's not very clear when PowerShell is the default shell and when Batch is the default shell. Steve Azzopardi1-5/+11
2019-07-18Add LXD Custom executor example•••This example creates LXD containers for a specific job and runs the script inside of that container. After the job is done the container is removed. This tries to follow the same life cycle of the Docker executor reference https://gitlab.com/gitlab-org/gitlab-runner/issues/4257 Steve Azzopardi3-0/+166
2019-07-17Pass Windows tests output with artifactsTomasz Maczukin2-1/+9
2019-07-17Improved go install instructions for macOSEvan Read1-10/+9
2019-07-17Correct spelling in help stringEvan Read1-1/+1
2019-07-17Move note to subsectionEvan Read1-20/+23
2019-07-16Use context.Background() to simplify the codeTomasz Maczukin1-6/+2
2019-07-16Update doc about Debian version•••Before https://gitlab.com/gitlab-org/gitlab-runner/merge_requests/823 we specified which debian version has this. closes https://gitlab.com/gitlab-org/gitlab-runner/issues/4481 Steve Azzopardi1-3/+3
2019-07-16Add custom executor documentationSteve Azzopardi3-20/+459