Merge pull request #14521 from neheb/gitl
gitlab-runner: update to 13.9.0
This commit is contained in:
commit
f54cd876c9
2 changed files with 14 additions and 5 deletions
|
@ -8,12 +8,12 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=gitlab-runner
|
PKG_NAME:=gitlab-runner
|
||||||
PKG_VERSION:=13.5.0
|
PKG_VERSION:=13.9.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v$(PKG_VERSION)
|
||||||
PKG_HASH:=765c1556ed9dd4c1b36f9946224c62f068b171e2c1581eeb8f71055327d8a274
|
PKG_HASH:=35e128eba8cae5269ba5e17d8a5610b39493cc030f110a2a331bbe642c878191
|
||||||
|
|
||||||
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
|
PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
|
||||||
PKG_LICENSE:=MIT
|
PKG_LICENSE:=MIT
|
||||||
|
@ -33,9 +33,7 @@ define Package/gitlab-runner
|
||||||
CATEGORY:=Development
|
CATEGORY:=Development
|
||||||
TITLE:=Runner for CI/CD
|
TITLE:=Runner for CI/CD
|
||||||
URL:=https://docs.gitlab.com/runner
|
URL:=https://docs.gitlab.com/runner
|
||||||
DEPENDS:= \
|
DEPENDS:=$(GO_ARCH_DEPENDS)
|
||||||
$(GO_ARCH_DEPENDS) \
|
|
||||||
@!(mips||mipsel) # Disabled because of docker engine error https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27234
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/gitlab-runner/description
|
define Package/gitlab-runner/description
|
||||||
|
|
11
devel/gitlab-runner/patches/010-test.patch
Normal file
11
devel/gitlab-runner/patches/010-test.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- a/common/buildtest/masking.go
|
||||||
|
+++ b/common/buildtest/masking.go
|
||||||
|
@@ -39,7 +39,7 @@ func RunBuildWithMasking(t *testing.T, c
|
||||||
|
|
||||||
|
buf.Finish()
|
||||||
|
|
||||||
|
- contents, err := buf.Bytes(0, math.MaxInt64)
|
||||||
|
+ contents, err := buf.Bytes(0, math.MaxInt32)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
assert.NotContains(t, string(contents), "MASKED_KEY=MASKED_VALUE")
|
Loading…
Reference in a new issue