summary refs log tree commit diff
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2018-01-25 09:38:44 +0800
committerGitHub <noreply@github.com>2018-01-25 09:38:44 +0800
commit52d2d62caa670959e4544d827aac28101fc8e021 (patch)
tree93f8c22ce1f34651f44e6be234abc468e9d5baf3
parent7049885300c506fdf3ce43c36ba10a70e89170d4 (diff)
parent029e80a90b09454033f284658f5998500177dd83 (diff)
downloadnixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar.gz
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar.bz2
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar.lz
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar.xz
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.tar.zst
nixlib-52d2d62caa670959e4544d827aac28101fc8e021.zip
Merge pull request #34243 from bachp/gitlab-runner-10.4.0
gitlab-runner: 10.3.0 -> 10.4.0
-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 cf4d5bcaa40c..e7c2509ce771 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, go-bindata }:
 
 let
-  version = "10.3.0";
+  version = "10.4.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}/docker/prebuilt-x86_64.tar.xz";
-    sha256 = "0nhxxx2wxnli5nfz8vxqc0mwdjzj836zx3zmywnfyy1k2zybjijv";
+    sha256 = "0fcddi1mwgj831abn628zcpwsah3mmvrbdi851pjf8vraynwr2xa";
   };
 
   docker_arm = fetchurl {
     url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz";
-    sha256 = "0jacimz4p9k5s9j510g3vn7gg8pybpa20j4cvz4pffrcwl1lgk4i";
+    sha256 = "1zlk3i9jzmsqz5r3kzg08z9hyhidw9dpv5ji46bnbjis8q3dlw54";
   };
 in
 buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
     owner = "gitlab-org";
     repo = "gitlab-runner";
     rev = "v${version}";
-    sha256 = "0wjy5bbz6bw0na57vglcwzn17q980x6j24qkschqx49rjyk3fz2i";
+    sha256 = "0kp6h53d1q652i4wp94hydy1ixlgmqh92sjsc6pqicnfc7nvwgfq";
   };
 
   patches = [ ./fix-shell-path.patch ];