We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bff54ee + 8501e4c commit 5c51fb8Copy full SHA for 5c51fb8
1 file changed
pkgs/by-name/bi/bitrise/package.nix
@@ -6,18 +6,23 @@
6
}:
7
buildGoModule rec {
8
pname = "bitrise";
9
- version = "2.33.2";
+ version = "2.34.3";
10
11
src = fetchFromGitHub {
12
owner = "bitrise-io";
13
repo = "bitrise";
14
rev = "v${version}";
15
- hash = "sha256-ckiozGSk8a0bzTzj8PuN55rrL2r95BylYRUHZdQF+Kc=";
+ hash = "sha256-Px4u3Jc3HbTN9NRGFYwTVL0/g+PsFw+JxEyOuTSTQbc=";
16
};
17
18
# many tests rely on writable $HOME/.bitrise and require network access
19
doCheck = false;
20
21
+ # resolves error: main module (github.com/bitrise-io/bitrise/v2) does not contain package github.com/bitrise-io/bitrise/v2/integrationtests/config
22
+ excludedPackages = [
23
+ "./integrationtests"
24
+ ];
25
+
26
vendorHash = null;
27
ldflags = [
28
"-X github.com/bitrise-io/bitrise/version.Commit=${src.rev}"
0 commit comments