summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'suspicious-condition' into 'master'•••Removal of conditions which are always evaluated either to true or false See merge request gitlab-org/gitlab-runner!1517HEADmasterTomasz Maczukin2019-08-082-8/+2
|\
| * authConfigs can not be nil because it is created using make above.Alexander Kutelev2019-08-061-4/+0
| * Removed suspicious condition which is always true.Alexander Kutelev2019-08-051-4/+2
* | Merge branch 'docs-fix-link' into 'master'•••Update a redirected link See merge request gitlab-org/gitlab-runner!1520Evan Read2019-08-081-7/+3
|\ \
| * | Update a redirected linkMarcel Amirault2019-08-081-7/+3
|/ /
* | Merge branch 'zm-buffer-masking' into 'master'•••Add test for <at> and <colon> masking See merge request gitlab-org/gitlab-runner!1516Steve Azzopardi2019-08-071-4/+4
|\ \
| * | Add test for <at> and <colon> maskingZeff Morgan2019-08-051-4/+4
| |/
* | Merge branch 'docs-codywest-autoscaling' into 'master'•••Update AWS autoscaling docs See merge request gitlab-org/gitlab-runner!1518Evan Read2019-08-071-1/+2
|\ \
| * | Update AWS autoscaling docs•••I'm adding a note about the supported base operating systems for Docker Machine. Cody West2019-08-071-1/+2
|/ /
* | Merge branch 'config-template-for-registration-poc' into 'master'•••Configuration file template for registration command See merge request gitlab-org/gitlab-runner!1263Steve Azzopardi2019-08-0623-95/+1237
|\ \
| * | Update github.com/imdario/mergo versionTomasz Maczukin2019-07-3121-59/+969
| * | Add configuration template file support for registration commandTomasz Maczukin2019-07-312-21/+249
| * | Refactor registration command testsTomasz Maczukin2019-07-311-22/+26
* | | Merge branch 'remove-ci-commit-ref' into 'master'•••Update reference to CI_COMMIT_REF to CI_COMMIT_SHA See merge request gitlab-org/gitlab-runner!1514Steve Azzopardi2019-08-061-1/+1
|\ \ \
| * | | Update reference to CI_COMMIT_REF to CI_COMMIT_SHAElliot Rushton2019-08-021-1/+1
| | |/ | |/|
* | | Merge branch 'CI_COMMIT_REF-docs' into 'master'•••Change CI_COMMIT_REF to CI_COMMIT_SHA in docs See merge request gitlab-org/gitlab-runner!1513Evan Read2019-08-051-9/+9
|\ \ \ | |/ / |/| |
| * | Change CI_COMMIT_REF to CI_COMMIT_SHA in docsStefan Schmalzhaf2019-08-051-9/+9
|/ /
* | Merge branch 'add-docs-var-to-runner-ci-config' into 'master'•••Remove need for externally configured variable See merge request gitlab-org/gitlab-runner!1512Tomasz Maczukin2019-08-011-0/+1
|\ \ | |/ |/|
| * Remove need for externally configured variableEvan Read2019-08-011-0/+1
|/
* Merge branch 'update-test-assertion' into 'master'•••Update test assertion See merge request gitlab-org/gitlab-runner!1510Tomasz Maczukin2019-07-301-1/+1
|\
| * Update 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 Azzopardi2019-07-301-1/+1
|/
* Merge branch '4407-prevent-running-multiple-runner-process-instances' into 'm...•••Prevent running multiple instances of the gitlab-runner process using the same configuration file Closes #4407 See merge request gitlab-org/gitlab-runner!1496Kamil TrzciƄski2019-07-3017-2/+1250
|\
| * Prevent running multiple instances of the gitlab-runner process using the sam...Tomasz Maczukin2019-07-3017-2/+1250
|/
* Merge branch 'windows-sh' into 'master'•••Add .gitattributes See merge request gitlab-org/gitlab-runner!1122Steve Azzopardi2019-07-301-0/+2
|\
| * Add an empty lineAndrey Maslennikov2019-01-211-1/+1
| * Add .gitattributes•••Checking out code on Windows machine breaks shell scripts (required to be lf-ended). Andrey Maslennikov2018-12-221-0/+2
* | Merge branch 'use-dind-with-tls' into 'master'•••Switch to DinD TLS for GitLab CI See merge request gitlab-org/gitlab-runner!1504Tomasz Maczukin2019-07-291-5/+8
|\ \
| * | Switch 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 Azzopardi2019-07-291-5/+8
* | | Merge branch '4407-cleanup-commands-config-go-file' into 'master'•••Cleanup commands/config.go See merge request gitlab-org/gitlab-runner!1494Steve Azzopardi2019-07-291-17/+8
|\ \ \
| * | | Remove unused method from commands/config.goTomasz Maczukin2019-07-291-14/+0
| * | | Cleanup commands/config.goTomasz Maczukin2019-07-291-3/+8
|/ / /
* | | Merge branch 'patch-4' into 'master'•••fix typo See merge request gitlab-org/gitlab-runner!1503Evan Read2019-07-291-1/+1
|\ \ \
| * | | fix typoMichiel Crefcoeur2019-07-251-1/+1
* | | | Merge branch 'docs-patch-4' into 'master'•••Drop support for Bash shell on Windows until long running issue is addressed See merge request gitlab-org/gitlab-runner!1498Evan Read2019-07-291-1/+4
|\ \ \ \
| * | | | Drop support for Bash shell on Windows until long running issue is addressedBen Bodenmiller2019-07-291-1/+4
|/ / / /
* | | | Merge branch '4123-reorder-methods-in-abstract-shell' into 'master'•••Reorder methods in abstract.go to bring calees closer to the callers See merge request gitlab-org/gitlab-runner!1481Steve Azzopardi2019-07-261-138/+138
|\ \ \ \ | |_|/ / |/| | |
| * | | Reorder methods in abstract.go to bring calees closer to the callersTomasz Maczukin2019-07-191-138/+138
* | | | Merge branch 'docs/add-missing-docker-config' into 'master'•••Add docs for tls_verify config field See merge request gitlab-org/gitlab-runner!1493Evan Read2019-07-251-0/+1
|\ \ \ \
| * | | | Add docs for tls_verify config field•••`tls_verify` is missing from the config options for the Docker executor. Steve Azzopardi2019-07-251-0/+1
* | | | | Merge branch 'quarantine-windows-tests' into 'master'•••Quarantine windows tests See merge request gitlab-org/gitlab-runner!1501Tomasz Maczukin2019-07-252-0/+892
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | Quarantine windows testsSteve Azzopardi2019-07-252-0/+892
|/ / / /
* | | | Filter another Windows flacky testsTomasz Maczukin2019-07-252-2/+16
* | | | Merge branch 'update-windows-test-failures' into 'master'•••Update tracked Windows tests failures list See merge request gitlab-org/gitlab-runner!1502Steve Azzopardi2019-07-252-46/+64
|\ \ \ \
| * | | | Update tracked Windows tests failures listTomasz Maczukin2019-07-252-46/+64
|/ / / /
* | | | Merge branch 'add-windows-failing-tests' into 'master'•••Quarantine more windows tests See merge request gitlab-org/gitlab-runner!1499Tomasz Maczukin2019-07-252-0/+20
|\ \ \ \
| * | | | Quarantine 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 Azzopardi2019-07-252-0/+20
* | | | | Merge branch 'docs-patch-5' into 'master'•••Fix PowerShell capitalization See merge request gitlab-org/gitlab-runner!1497Steve Azzopardi2019-07-251-1/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fix PowerShell capitalizationBen Bodenmiller2019-07-251-1/+1
|/ / / /
* | | | Merge branch 'docs-mdl-rules' into 'master'•••Expand markdown lint rules in runner See merge request gitlab-org/gitlab-runner!1492Evan Read2019-07-251-1/+2
|\ \ \ \
| * | | | Expand markdown lint rules in runnerMarcel Amirault2019-07-251-1/+2
|/ / / /