summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/continuous-integration/gitlab-runner
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@nextrem.ch>2018-01-24 22:32:22 +0100
committerPascal Bach <pascal.bach@nextrem.ch>2018-01-24 22:38:57 +0100
commit029e80a90b09454033f284658f5998500177dd83 (patch)
tree9a1d3dcb550f5206dce3d2ab51c2c8983258c960 /pkgs/development/tools/continuous-integration/gitlab-runner
parent0e7a5207ec9e34adb77e5c9a596be22d6120103e (diff)
gitlab-runner: 10.3.0 -> 10.4.0
Diffstat (limited to 'pkgs/development/tools/continuous-integration/gitlab-runner')
-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 ];