gitlab-runner: add new package 13919/head
authorJan Pavlinec <jan.pavlinec@nic.cz>
Sun, 15 Nov 2020 11:28:54 +0000 (12:28 +0100)
committerJan Pavlinec <jan.pavlinec@nic.cz>
Mon, 23 Nov 2020 11:57:50 +0000 (12:57 +0100)
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
devel/gitlab-runner/Makefile [new file with mode: 0644]

diff --git a/devel/gitlab-runner/Makefile b/devel/gitlab-runner/Makefile
new file mode 100644 (file)
index 0000000..6902772
--- /dev/null
@@ -0,0 +1,47 @@
+#
+# Copyright (C) 2020 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=gitlab-runner
+PKG_VERSION:=13.5.0
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-v$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v$(PKG_VERSION)
+PKG_HASH:=765c1556ed9dd4c1b36f9946224c62f068b171e2c1581eeb8f71055327d8a274
+
+PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
+PKG_LICENSE:=MIT
+PKG_LICENSE_FILES:=LICENSE
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/gitlab-runner-v$(PKG_VERSION)
+PKG_BUILD_DEPENDS:=golang/host
+PKG_BUILD_PARALLEL:=1
+PKG_USE_MIPS16:=0
+GO_PKG:=gitlab.com/gitlab-org/gitlab-runner
+
+include $(INCLUDE_DIR)/package.mk
+include ../../lang/golang/golang-package.mk
+
+define Package/gitlab-runner
+  SECTION:=devel
+  CATEGORY:=Development
+  TITLE:=Runner for CI/CD
+  URL:=https://docs.gitlab.com/runner
+  DEPENDS:= \
+    $(GO_ARCH_DEPENDS) \
+    @!(mips||mipsel) # Disabled because of docker engine error https://gitlab.com/gitlab-org/gitlab-runner/-/issues/27234
+endef
+
+define Package/gitlab-runner/description
+  GitLab Runner is an application that works with
+  GitLab CI/CD to run jobs in a pipeline.
+endef
+
+$(eval $(call GoBinPackage,gitlab-runner))
+$(eval $(call BuildPackage,gitlab-runner))