about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorMax Wittig <max.wittig@siemens.com>2019-07-22 08:29:01 +0200
committerGitHub <noreply@github.com>2019-07-22 08:29:01 +0200
commitbc6366b728511cbc01696bb93cc4825e0af21ee2 (patch)
tree86445ea648cfa2e2b6cea93d032975038d112876 /pkgs/development/tools/continuous-integration
parent2000a9ebcbf60572642cfae5a9196444fe35aa82 (diff)
downloadnixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar.gz
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar.bz2
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar.lz
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar.xz
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.tar.zst
nixlib-bc6366b728511cbc01696bb93cc4825e0af21ee2.zip
gitlab-runner: 12.0.2 -> 12.1.0
Corresponding runner for GitLab version 12.1.0

Changelog: https://gitlab.com/gitlab-org/gitlab-runner/blob/12-1-stable/CHANGELOG.md
Diffstat (limited to 'pkgs/development/tools/continuous-integration')
-rw-r--r--pkgs/development/tools/continuous-integration/gitlab-runner/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index a93b791f7e6a..3ced385e9da8 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
 { lib, buildGoPackage, fetchFromGitLab, fetchurl }:
 
 let
-  version = "12.0.2";
+  version = "12.1.0";
   # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
   docker_x86_64 = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz";
-    sha256 = "0b1xkksd4rgqvjahp5bf53sk887z2fxwr7rf8vqs9j9aw54zm5cn";
+    sha256 = "0zrlprzbjnssrf0qjb80fy50ypryrqhmkqrpad68bnsz7da34idk";
   };
 
   docker_arm = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
-    sha256 = "1cjl64g3ymnrs9c3fl28aydfzf18ik4vnjcvijv28c3gm1i6chs0";
+    sha256 = "0zsin76qiq46w675wdkaz3ng1i9szad3hzmk5dngdnr59gq5mqhk";
   };
 in
 buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "0cbh11libcyfdgrvnl1aa11x90ac7zgn1d9myc4dwmqzfdm4kdlb";
+    sha256 = "0npjgarbwih8j2ih1mshwyp4nj9h15phvg61kifh63p9mf4r63nn";
   };
 
   patches = [ ./fix-shell-path.patch ];