aboutsummaryrefslogtreecommitdiff
path: root/devel/gitlab-runner
Commit message (Collapse)AuthorAgeFilesLines
* */*: Bump PORTREVISION after lang/go 1.18 updateGuangyuan Yang2022-03-301-0/+1
|
* devel/gitlab-runner: update to 14.5.0Boris Korzun2022-03-142-44/+42
| | | | PR: 260035
* devel/gitlab-runner: Update to 14.1.0Matthias Fechner2021-07-243-85/+87
| | | | | | | | | This update fixes the problem that the distfiles for version 13.9.0 are not fetchable anymore as it seems that upstream has removed it or the checksum of the files changed. PR: 256865 Reported by: arrowd
* Regenerate all distfiles using gitlab as source.Matthias Fechner2021-04-091-7/+7
| | | | | | | | | | | | This regeneration is required as the new gitlab version changed the address and the directory the source files can be downloaded. This commit also applies some small fixes to make sure all ports using gitlab are buildable. Reviewed by: mat Approved by: portmgr Differential Revision: https://reviews.freebsd.org/D29628
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop gomod-deps in favor of gomod-vendorTobias Kortkamp2021-03-071-4/+0
| | | | | | | | | | | USES=go has gomod-vendor that does the same. Let's not reinvent the wheel. Approved by: mfechner, swills Differential Revision: https://reviews.freebsd.org/D29080 Notes: svn path=/head/; revision=567554
* devel/gitlab-runner: update to 13.9.0Steve Wills2021-02-272-44/+41
| | | | Notes: svn path=/head/; revision=566658
* devel/gitlab-runner: update to 13.8.0Steve Wills2021-02-052-121/+132
| | | | Notes: svn path=/head/; revision=564080
* devel/gitlab-runner: update to 13.7.0Steve Wills2020-12-262-19/+19
| | | | Notes: svn path=/head/; revision=559321
* devel/gitlab-runner: update to 13.6.0Steve Wills2020-12-072-86/+109
| | | | Notes: svn path=/head/; revision=557192
* devel/gitlab-runner: update to 13.5.0Steve Wills2020-10-202-13/+16
| | | | Notes: svn path=/head/; revision=552829
* devel/gitlab-runner: update to 13.4.1Steve Wills2020-10-092-6/+6
| | | | Notes: svn path=/head/; revision=551740
* devel/gitlab-runner: update to 13.4.0Steve Wills2020-09-222-16/+78
| | | | Notes: svn path=/head/; revision=549595
* devel/gitlab-runner: update to 13.3.1Steve Wills2020-09-092-6/+6
| | | | Notes: svn path=/head/; revision=548159
* devel/gitlab-runner: update to 13.3.0Steve Wills2020-08-272-7/+7
| | | | Notes: svn path=/head/; revision=546370
* devel/gitlab-runner: update to 13.2.2Steve Wills2020-08-152-7/+7
| | | | Notes: svn path=/head/; revision=545058
* devel/gitlab-runner: Update from 13.1.1 to 13.2.1Torsten Zuehlsdorff2020-07-232-74/+109
| | | | | | | | | | | Changelogs https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.2.1/CHANGELOG.md While here add stage gomods-dep in order to ease the handling of the go dependencies Sponsored by: Bounce Experts Notes: svn path=/head/; revision=542923
* devel/gitlab-runner: Update from 12.6.0 to 13.1.1Torsten Zuehlsdorff2020-07-144-72/+55
| | | | | | | | | | | | | | | | | | | | | There are hundrets of changes done. Have a look at the folling changelogs: v12.7.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1270-2020-01-20 v12.7.1: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1271-2020-01-23 v12.8.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1280-2020-02-22 v12.9.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1290-2020-03-20 v12.10.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v12100-2020-04-21 v13.0.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1300-2020-05-20 v13.0.1: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1301-2020-06-01 v13.1.0: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1310-2020-06-19 v13.1.1: https://gitlab.com/gitlab-org/gitlab-runner/blob/v13.1.1/CHANGELOG.md#v1311-2020-07-01 Special thanks to swills for the massive ground work done. Without your work i would not have accomplished this update! Sponsored by: Bounce Experts Notes: svn path=/head/; revision=542237
* devel/gitlab-runner: fix patch filesMikael Urankar2020-03-302-40/+0
| | | | | | | | | | The patch were applied twice. Reported by: mfechner Approved by: manu (mentor, implicit) Notes: svn path=/head/; revision=529892
* devel/gitlab-runner: unbreak on aarch64Mikael Urankar2020-03-272-0/+80
| | | | | | | | | | | | | | | | | | | | # github.com/kr/pty vendor/github.com/kr/pty/pty_freebsd.go:50:20: undefined: fiodgnameArg vendor/github.com/kr/pty/pty_freebsd.go:63:12: undefined: _C_SPECNAMELEN vendor/github.com/kr/pty/pty_freebsd.go:66:9: undefined: fiodgnameArg Add the missing ztypes_freebsd_arm64.go file for aarch64 # golang.org/x/sys/unix vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go:400:12: undefined: uint128 Import upstream patch https://github.com/golang/sys/commit/33540a1f603772f9d4b761f416f5c10dade23e96 PR: 245012 Approved by: swills (maintainer), manu (mentor, implicit) Notes: svn path=/head/; revision=529268
* devel/gitlab-runner: update to 12.6.0Steve Wills2020-01-062-17/+290
| | | | Notes: svn path=/head/; revision=522302
* devel/gitlab-runner: update to 12.4.0Steve Wills2019-10-232-7/+7
| | | | Notes: svn path=/head/; revision=515267
* devel/gitlab-runner: update to 12.3.0Steve Wills2019-10-072-7/+7
| | | | Notes: svn path=/head/; revision=513972
* Go ports: cleanup, finish transition to USES=go started with r505321 (cat. ↵Dmitri Goutnik2019-09-291-15/+6
| | | | | | | | | | | | | | | audio-mail) - Remove custom build/install targets left in place after r505321 - Switch to the new GO_TARGET tuple syntax introduced in r512001 - Switch to go:modules when upstream already uses them Reviewed by: tobik Approved by: araujo (mentor), portmgr (adamw) Differential Revision: https://reviews.freebsd.org/D21741 Notes: svn path=/head/; revision=513274
* devel/gitlab-runner: update to 12.1.0Steve Wills2019-08-192-7/+7
| | | | Notes: svn path=/head/; revision=509309
* Convert to UCL & cleanup pkg-message (categories d)Mathieu Arnold2019-08-131-2/+6
| | | | Notes: svn path=/head/; revision=508835
* Convert all Go ports to USES=goTobias Kortkamp2019-06-291-2/+3
| | | | | | | | | | | | | | | | | | | | This allows for port testing with lang/go-devel via GO_PORT, setting up the Go build environment in a single place, and is step one in simplifying Go ports that often define too complicated do-build targets themselves. USES=go gains new arguments 'run' to add lang/go to RUN_DEPENDS and 'no_targets' for ports with composite builds that call 'go' themselves and do not need the do-build/do-install targets of USES=go. PR: 238849 Submitted by: dg@syrec.org (also D20745) Reviewed by: mat, tobik Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D20746 Notes: svn path=/head/; revision=505321
* devel/gitlab-runner: update to 11.11.1Steve Wills2019-05-242-6/+6
| | | | Notes: svn path=/head/; revision=502490
* devel/gitlab-runner: update to 11.11.0Steve Wills2019-05-222-7/+8
| | | | Notes: svn path=/head/; revision=502246
* devel/gitlab-runner: update to 11.10.1Steve Wills2019-04-262-6/+6
| | | | Notes: svn path=/head/; revision=500132
* Upgrade to 11.10.0 which is required for Gitlab 11.10 upgrade.Matthias Fechner2019-04-233-18/+8
| | | | Notes: svn path=/head/; revision=499729
* devel/gitlab-runner: fix build after go 1.12 updateSteve Wills2019-03-042-1/+14
| | | | | | | | PR: 236131 Submitted by: mfechner Notes: svn path=/head/; revision=494656
* devel/gitlab-runner: fix GITREVSteve Wills2019-01-281-3/+1
| | | | | | | Submitted by: tobik Notes: svn path=/head/; revision=491477
* devel/gitlab-runner: update to 11.7.0Steve Wills2019-01-272-6/+7
| | | | Notes: svn path=/head/; revision=491371
* devel/gitlab-runner: update to 11.6.1Steve Wills2019-01-172-8/+7
| | | | Notes: svn path=/head/; revision=490599
* devel/gitlab-runner: Fix env issueSteve Wills2019-01-162-3/+4
| | | | | | | | | | The rc script failed to pass the environtment to the command, causing automated (non-interactive) configuration to fail. MFH: 2019Q1 Notes: svn path=/head/; revision=490493
* devel/gitlab-runner: update to 11.6.0Steve Wills2018-12-272-8/+8
| | | | Notes: svn path=/head/; revision=488554
* devel/gitlab-runner: update to 11.5.1Steve Wills2018-12-072-7/+7
| | | | Notes: svn path=/head/; revision=486885
* devel/gitlab-runner: update to 11.5.0Steve Wills2018-11-272-8/+8
| | | | Notes: svn path=/head/; revision=486046
* devel/gitlab-runner: update to 11.2.0Steve Wills2018-09-222-8/+8
| | | | Notes: svn path=/head/; revision=480336
* devel/gitlab-runner: update to 11.0.0Steve Wills2018-06-242-12/+12
| | | | Notes: svn path=/head/; revision=473168
* devel/gitlab-runner: update to 10.7.2Steve Wills2018-05-192-12/+12
| | | | Notes: svn path=/head/; revision=470351
* devel/gitlab-runner: update to 10.6.0Steve Wills2018-04-172-16/+14
| | | | Notes: svn path=/head/; revision=467543
* Make 41 Go ports respect MAKE_ENV. This is expected to unbreak them.Yuri Victorovich2018-03-071-1/+1
| | | | | | | | | | | | | | | | | | | Ports: benchmarks/hey benchmarks/vegeta databases/influxdb devel/arduino-builder devel/arduinoOTA devel/awless devel/git-codereview devel/git-town devel/gitlab-runner devel/grv devel/hub devel/jfrog-cli editors/micro finance/fixc misc/exercism net-mgmt/intel-snap net-mgmt/kapacitor net-mgmt/telegraf net/goreplay net/syncthing net/syncthing-cli net/syncthing-discosrv net/syncthing-inotify print/cups-connector security/sops security/vault sysutils/amazon-ssm-agent sysutils/circonus-agent sysutils/consul sysutils/consul_exporter sysutils/envconsul sysutils/serf textproc/consul-template textproc/spiff www/gobuffalo www/grafana2 www/grafana3 www/mattermost-server www/minio www/minio-client www/uchiwa Approved by: tcberner (mentor, implicit) Approved by: portmgr (port compliance, infrastructure) Notes: svn path=/head/; revision=463776
* devel/gitlab-runner: update to 10.4.0Steve Wills2018-01-252-8/+8
| | | | Notes: svn path=/head/; revision=459905
* devel/gitlab-runner: fix fetchSteve Wills2018-01-241-5/+5
| | | | Notes: svn path=/head/; revision=459812
* devel/gitlab-runner: update to 10.3.0Steve Wills2018-01-093-14/+18
| | | | Notes: svn path=/head/; revision=458505
* devel/gitlab-runner: update to 10.0.2Steve Wills2017-10-163-40/+27
| | | | Notes: svn path=/head/; revision=452200
* devel/gitlab-runner: update to 9.5.0 [0]Steve Wills2017-09-174-8/+77
| | | | | | | | | | While here, add patch to enable syslog logging and enable it in rc script [1] PR: 221769 [1] Submitted by: Ben RUBSON <ben.rubson@gmail.com> [1] Notes: svn path=/head/; revision=449979