about summary refs log tree commit diff
path: root/pkgs/development/tools/continuous-integration
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2019-12-23 09:28:40 +0100
committerzimbatm <zimbatm@zimbatm.com>2019-12-23 08:28:40 +0000
commit8b21b3a42e2b3419b99dd635f66cce92dd49bf1e (patch)
treeb6ea5be3aa676904f818284ef5999cd62fdba059 /pkgs/development/tools/continuous-integration
parentf12afbd2c2f0b83dbcd4bf9ae1b8050f84597d18 (diff)
downloadnixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar.gz
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar.bz2
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar.lz
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar.xz
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.tar.zst
nixlib-8b21b3a42e2b3419b99dd635f66cce92dd49bf1e.zip
gitlab-runner: 12.5.0 -> 12.6.0 (#76190)
This release does no longer contain the lock file that broke the NixOS
module in 12.5.0
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 c264e528c8d6..214e48b14b6d 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.5.0";
+  version = "12.6.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 = "1g4cgcn33zglk3az0pn81vsnq5b2csclxlx6hbp0l546lqjfw30d";
+    sha256 = "14wp9dyacbldfvykc68pa0mj59anf0zfadxsr9bqwyl795zsxh7g";
   };
 
   docker_arm = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
-    sha256 = "0v13b4likwx1szbzbj3cf9yvkc9rbn8760agrf1bxik0immhhhq4";
+    sha256 = "1iln85xy4qkz7ps2vr4qlbvn4p1b8137a75r4s24bc7g6apzyyvs";
   };
 in
 buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "0qlvm0ixwbkbqh73gbhvzhkaswwv1jcmqa79mazxwphxcki04m96";
+    sha256 = "08vxgv6m83wqxksy0vj7nx6bb55sxn9c7l0sdpg0nblps0n8fzxm";
   };
 
   patches = [ ./fix-shell-path.patch ];