This project is mirrored from https://gitlab.com/gitlab-org/gitlab-runner.git.
Pull mirroring updated .
- 19 Oct, 2020 2 commits
-
-
botayhard authored
-
Steve Azzopardi authored
Add kubernetes runners allowPrivilegeEscalation security context configuration Closes #26998 See merge request gitlab-org/gitlab-runner!2430
-
- 16 Oct, 2020 3 commits
-
-
Horatiu Eugen Vlad authored
Run all containers with the `allowPrivilegeEscalation` flag enabled. When empty, it does not define the `allowPrivilegeEscalation` flag in the container `SecurityContext` and allows Kubernetes to use the default [privilege escalation](https://kubernetes.io/docs/concepts/policy/pod-security-policy/#privilege-escalation) behavior.
-
Horatiu Eugen Vlad authored
-
Tomasz Maczukin authored
Improve build logging testing See merge request gitlab-org/gitlab-runner!2465
-
- 14 Oct, 2020 7 commits
-
-
Arran Walker authored
-
Suzanne Selhorn authored
Clarify how service_account in toml is used See merge request gitlab-org/gitlab-runner!2476
-
Ben Bodenmiller authored
-
Suzanne Selhorn authored
Provide a full list of metrics available for GitLab runners in the documentation See merge request gitlab-org/gitlab-runner!2479
-
Vladimir Dzalbo authored
-
Tomasz Maczukin authored
Fix TestBuildCancel from timing out Closes #27077 See merge request gitlab-org/gitlab-runner!2468
-
Steve Azzopardi authored
In https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27077 we are seeing timeouts of the `TestBuildCancel` test because when the job in canceled we send `SIGTERM` to process that is running. After a certain amount of time we send `SIGKILL` if that process hasn't terminated yet, the default is [10 minutes](https://gitlab.com/gitlab-org/gitlab-runner/-/blob/56fbbb1150681915e4de33551a01cb3d4defa91c/helpers/process/killer.go#L17). Since the default timeout of go tests is 10 minutes our test ends up timeing out because `SIGKILL` hasn't been sent yet. Have the GracefulKillTimeout and ForceKillTimeout configurable and set it at a low amount for tests so we don't waste time waiting for a process to terminate since the processes don't usually have any cleanup to do. closes https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27077
-
- 13 Oct, 2020 3 commits
-
-
Suzanne Selhorn authored
Introduce usage of Runner Manager terminology See merge request gitlab-org/gitlab-runner!2474
-
Nourdin el Bacha authored
Related to https://gitlab.com/gitlab-org/gitlab/-/issues/250481
-
Kamil Trzciński authored
Teach artifact/cache commands about the archive interface See merge request gitlab-org/gitlab-runner!2467
-
- 12 Oct, 2020 4 commits
-
-
Suzanne Selhorn authored
Update Kubernetes' documentation to include ephemeral storage requests/limits Closes #27059 See merge request gitlab-org/gitlab-runner!2457
-
Arran Walker authored
-
Arran Walker authored
-
Kamil Trzciński authored
Implement archiver/extractor interface See merge request gitlab-org/gitlab-runner!2195
-
- 09 Oct, 2020 1 commit
-
-
Arran Walker authored
-
- 08 Oct, 2020 7 commits
-
-
Steve Azzopardi authored
-
Steve Azzopardi authored
This job is causing a few problems: 1. Preventing forks from running https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27021 1. Blocking releases because pipelines on tags fail https://gitlab.com/gitlab-org/gitlab/-/issues/263711
-
Steve Azzopardi authored
-
Steve Azzopardi authored
-
Kamil Trzciński authored
Revert "Merge branch 'ajwalker/after_script-kamil' into 'master'" See merge request gitlab-org/gitlab-runner!2469
-
Steve Azzopardi authored
This reverts commit 411b98f3, reversing changes made to 689cf710.
-
Georgi N. Georgiev authored
Allow runner to archive cache on failure See merge request gitlab-org/gitlab-runner!2416
-
- 07 Oct, 2020 4 commits
-
-
allison.browne authored
Stylistic changes based on review
-
allison.browne authored
`cache:when` is used to cache on job failure, despite the failure. `cache:when` can be set to one of the following values: 1. `on_success` - upload artifacts only when the job succeeds. This is the default. 2. `on_failure` - upload artifacts only when the job fails. 3. `always` - upload artifacts regardless of the job status.
-
ggeorgiev_ authored
-
ggeorgiev_ authored
-
- 06 Oct, 2020 7 commits
-
-
Suzanne Selhorn authored
Doc `cleanup_file_variables` for custom executor See merge request gitlab-org/gitlab-runner!2455
-
Georgi N. Georgiev authored
Report Kubernetes pods' conditions when they're pending Closes #4569 See merge request gitlab-org/gitlab-runner!2434
-
Steve Azzopardi authored
Merge branch '27068-metrics-specify-that-a-job-has-failed-succeeded-even-when-running-after_script-which-breaks' into 'master' Detach runtime state/metric from CI_JOB_STATUS Closes #27068 See merge request gitlab-org/gitlab-runner!2462
-
Arran Walker authored
-
Steve Azzopardi authored
Ensure that for abort only abort is called Closes #27056 See merge request gitlab-org/gitlab-runner!2463
-
Kamil Trzciński authored
Previously we would call `cancel()` on `abort()` which in some implementations could result in calling additional steps due to race condition. The `abort()` is final, we don't need to `cancel()` before as `abort()` in any case should take a precedence in processing.
-
Arran Walker authored
-
- 05 Oct, 2020 2 commits
-
-
Dmitry Mishin authored
-
Dmitry Mishin authored
-