mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 21:12:27 +01:00
71 lines
2.5 KiB
Plaintext
71 lines
2.5 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@alpinelinux.org>
|
|
# Contributor: Rasmus Thomsen <oss@cogitir.dev>
|
|
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
|
|
pkgname=gitlab-runner
|
|
pkgver=12.6.0
|
|
pkgrel=0
|
|
# first 8 chars of the git hash of the release, see
|
|
# https://gitlab.com/gitlab-org/gitlab-runner/-/tags
|
|
# PLEASE update this, since they're used to determine what version of
|
|
# https://hub.docker.com/r/gitlab/gitlab-runner-helper/tags to use
|
|
_rev=ac8e767a
|
|
pkgdesc="GitLab runner for CI/CD jobs"
|
|
url="https://docs.gitlab.com/runner/"
|
|
arch="all"
|
|
license="MIT"
|
|
makedepends="go"
|
|
install="$pkgname.pre-install $pkgname.pre-upgrade"
|
|
pkgusers="gitlab-runner"
|
|
pkggroups="gitlab-runner"
|
|
options="!check chmod-clean" # Need to be run in a git repo
|
|
subpackages="$pkgname-helper $pkgname-openrc"
|
|
source="https://gitlab.com/gitlab-org/gitlab-runner/-/archive/v$pkgver/gitlab-runner-v$pkgver.tar.gz
|
|
$pkgname.initd
|
|
$pkgname.confd"
|
|
|
|
builddir="$srcdir/src/gitlab.com/gitlab-org/$pkgname"
|
|
|
|
export GOPATH="$srcdir"
|
|
export CGO_ENABLED=0
|
|
|
|
prepare() {
|
|
mkdir -p ${builddir%/*}
|
|
mv "$srcdir"/$pkgname-v$pkgver "$builddir"/
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
local ldflags="
|
|
-X gitlab.com/gitlab-org/$pkgname/common.NAME=$pkgname
|
|
-X gitlab.com/gitlab-org/$pkgname/common.VERSION=$pkgver
|
|
-X gitlab.com/gitlab-org/$pkgname/common.REVISION=$_rev
|
|
-X gitlab.com/gitlab-org/$pkgname/common.BUILT=$(date -u +%Y-%m-%dT%H:%M:%S%z)
|
|
-X gitlab.com/gitlab-org/$pkgname/common.BRANCH=master
|
|
-s -w
|
|
"
|
|
go build -ldflags "$ldflags" -o bin/gitlab-runner
|
|
go build -ldflags "$ldflags" -o bin/gitlab-runner-helper \
|
|
./apps/gitlab-runner-helper
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 "$builddir"/bin/gitlab-runner \
|
|
"$pkgdir"/usr/bin/gitlab-runner
|
|
|
|
install -m755 -D "$srcdir/$pkgname.initd" "$pkgdir"/etc/init.d/gitlab-runner
|
|
install -m755 -D "$srcdir/$pkgname.confd" "$pkgdir"/etc/conf.d/gitlab-runner
|
|
|
|
mkdir -p "$pkgdir"/var/lib/gitlab-runner
|
|
chown gitlab-runner:gitlab-runner "$pkgdir"/var/lib/gitlab-runner
|
|
}
|
|
|
|
helper() {
|
|
pkgdesc="$pkgdesc (helper)"
|
|
install -Dm755 "$builddir"/bin/gitlab-runner-helper \
|
|
"$subpkgdir"/usr/bin/gitlab-runner-helper
|
|
}
|
|
|
|
sha512sums="f2fdad294eaea3b5d57e1b1126a1ef0f1c43f855ad75aa29d3694b38df4e3ed254ad05ef64f1f8cf45509f782ba0a24d8c89936b2719cd0d4a016edd5fa2df72 gitlab-runner-v12.6.0.tar.gz
|
|
2ae753efc220c46378e84831f01b289f3689af70cd7cbb0bbcc04dc17c910d65eb5105c198d5a23098e27797a7d1c695f49b244993ea4676eb9ec9cda064f44e gitlab-runner.initd
|
|
243ed9d7575e925794213973232f95f02d5e10cfab6cd29df6a4641b9d05b342ae90678b2eea4b21ddc703596429919d037b38248046d7c5e7a480406f412445 gitlab-runner.confd"
|