-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gitlab-runner: circumvent patched go runtime check
We already have a go version with the proper fix.
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...inuous-integration/gitlab-runner/0001-gitlab-runner-don-t-checked-for-fixed-runtime.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 13c633bf0075daa6ff973f368a25cf205caa017e Mon Sep 17 00:00:00 2001 | ||
From: Pascal Bach <pascal.bach@nextrem.ch> | ||
Date: Sat, 11 Dec 2021 10:07:01 +0100 | ||
Subject: [PATCH] gitlab-runner: don't checked for fixed runtime | ||
|
||
We already use 1.16.12 which has the proper fix | ||
--- | ||
helpers/patches/issue_28732/syscall.go | 7 +------ | ||
1 file changed, 1 insertion(+), 6 deletions(-) | ||
|
||
diff --git a/helpers/patches/issue_28732/syscall.go b/helpers/patches/issue_28732/syscall.go | ||
index 580513b57..fa9e4cc85 100644 | ||
--- a/helpers/patches/issue_28732/syscall.go | ||
+++ b/helpers/patches/issue_28732/syscall.go | ||
@@ -2,11 +2,6 @@ | ||
|
||
package issue_28732 | ||
|
||
-import ( | ||
- "syscall" | ||
-) | ||
- | ||
func AssertFixPresent() { | ||
- // Ensure that Issue28732Fix fixed runtime is used | ||
- syscall.Issue28732Fix() | ||
+ // Issue already fixed by using go 1.16.12 | ||
} | ||
-- | ||
2.34.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters