diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-05-30 22:33:29 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-08-07 10:08:20 -0500 |
commit | 018736f327af152836fa2e01f12ed067cb59ac00 (patch) | |
tree | 21a141424cc8de2beb3a611a48efe3e3d8f919e9 /user/gitlab-runner/clean-tmpdirs.patch | |
parent | 79e3f684ad2db0c6df8659e819add7d8517d9cab (diff) | |
download | packages-018736f327af152836fa2e01f12ed067cb59ac00.tar.gz packages-018736f327af152836fa2e01f12ed067cb59ac00.tar.bz2 packages-018736f327af152836fa2e01f12ed067cb59ac00.tar.xz packages-018736f327af152836fa2e01f12ed067cb59ac00.zip |
user/gitlab-runner: Update to 15.0.0
* Parallel build on as many cores as normal builds use.
* The module cache is contained within the builddir instead of polluting HOME.
Diffstat (limited to 'user/gitlab-runner/clean-tmpdirs.patch')
-rw-r--r-- | user/gitlab-runner/clean-tmpdirs.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/user/gitlab-runner/clean-tmpdirs.patch b/user/gitlab-runner/clean-tmpdirs.patch deleted file mode 100644 index 89efd7a22..000000000 --- a/user/gitlab-runner/clean-tmpdirs.patch +++ /dev/null @@ -1,21 +0,0 @@ -Backport of: https://gitlab.com/gitlab-org/gitlab-runner/-/merge_requests/1978 - ---- gitlab-runner-v12.1.0/executors/custom/executor.go 2019-07-19 12:13:32.000000000 +0000 -+++ gitlab-runner-v12.1.0/executors/custom/executor.go 2020-04-27 00:19:46.613372635 +0000 -@@ -7,6 +7,7 @@ import ( - "fmt" - "io" - "io/ioutil" -+ "os" - "path/filepath" - - "github.com/sirupsen/logrus" -@@ -216,6 +217,8 @@ func (e *executor) Cleanup() { - return - } - -+ defer os.RemoveAll(e.tempDir) -+ - // nothing to do, as there's no cleanup_script - if e.config.CleanupExec == "" { - return |