Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nix 2.4 issues with git tags #12832

Closed
jakubgs opened this issue Nov 19, 2021 · 13 comments · Fixed by #12980
Closed

Nix 2.4 issues with git tags #12832

jakubgs opened this issue Nov 19, 2021 · 13 comments · Fixed by #12980
Assignees

Comments

@jakubgs
Copy link
Member

jakubgs commented Nov 19, 2021

It appears that newest 2.4 release of Nix has some weird issues with Git tags:

 > make run-clojure 
yarn shadow-cljs watch mobile
Configuring Nix shell for target 'clojure'...
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
(use '--show-trace' to show detailed location information)
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128

       … while fetching the input 'git+https://github.com/tbenr/react-native-audio-toolkit.git?ref=v2.0.3-status-v6&rev=7ae9055cf6169b30f5089bda7bfcfc1c40a715e5'

       … while evaluating the attribute 'buildCommand' of the derivation 'react-native-audio-toolkit.git'
@jakubgs jakubgs added the bug label Nov 19, 2021
@jakubgs jakubgs self-assigned this Nov 19, 2021
@jakubgs jakubgs added the nix label Nov 19, 2021
@jakubgs
Copy link
Member Author

jakubgs commented Jan 5, 2022

I checked 2.5.1 but the same issue appears:

checking for references to /build/ in /nix/store/nsmg4iyqkndfg0llfzgz24gcbfir7jzq-yarn2nix-1.0.0...
distPhase
yarn pack v1.22.17
building '/nix/store/h3d6dg58b41lcpk85v7kr8py5akd454b-yarn.nix.drv'...
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
(use '--show-trace' to show detailed location information)
removed '/tmp/tmp-status-react-59d3e3e46/tmp.Td1Psq2Dz2'
make: *** [Makefile:196: release-android] Error 1

@jakubgs
Copy link
Member Author

jakubgs commented Jan 6, 2022

Actually, there might be a way to get around this by prefixing tags with refs/tags/ as in this fix:
hercules-ci/docs.hercules-ci.com@b8a3e39

jakubgs added a commit that referenced this issue Jan 6, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
@jakubgs
Copy link
Member Author

jakubgs commented Jan 6, 2022

It builds, but will require fixes in packages-check-bot:
https://github.com/status-im/packages-check-bot/blob/dffdedb9/src/dependency-check-json.ts#L77-L79

jakubgs added a commit to status-im/packages-check-bot that referenced this issue Jan 10, 2022
The need to reference Git tags with `refs/tags/` prefix is caused by
changes in how Nix `2.4` and newer versions handle Git tags. They expect
tags without full name to be branches, which fails with:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

Issue: status-im/status-mobile#12832
PR: status-im/status-mobile#12980

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit to status-im/packages-check-bot that referenced this issue Jan 11, 2022
The need to reference Git tags with `refs/tags/` prefix is caused by
changes in how Nix `2.4` and newer versions handle Git tags. They expect
tags without full name to be branches, which fails with:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

Issue: status-im/status-mobile#12832
PR: status-im/status-mobile#12980

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit to status-im/packages-check-bot that referenced this issue Jan 11, 2022
Extends `urlRegex` to accept tags specified with full `refs/tags/*` format.
Note the use of `?:` part to make the group not present in the `matche` list.

The need to reference Git tags with `refs/tags/` prefix is caused by
changes in how Nix `2.4` and newer versions handle Git tags. They expect
tags without full name to be branches, which fails with:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

Issue: status-im/status-mobile#12832
PR: status-im/status-mobile#12980

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit to status-im/packages-check-bot that referenced this issue Jan 11, 2022
Extends `urlRegex` to accept tags specified with full `refs/tags/*` format.
Note the use of `?:` part to make the group not present in the `matche` list.

The need to reference Git tags with `refs/tags/` prefix is caused by
changes in how Nix `2.4` and newer versions handle Git tags. They expect
tags without full name to be branches, which fails with:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

Issue: status-im/status-mobile#12832
PR: status-im/status-mobile#12980

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```
Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 13, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 26, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 26, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 26, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 26, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Jan 26, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issue: NixOS/nix#5291

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Feb 1, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issues:
* NixOS/nix#5291
* NixOS/nix#6007

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Feb 1, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issues:
* NixOS/nix#5291
* NixOS/nix#6007

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Feb 1, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issues:
* NixOS/nix#5291
* NixOS/nix#6007

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Feb 1, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37
Issues:
* NixOS/nix#5291
* NixOS/nix#6007

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Feb 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
@ZainAliSyed24
Copy link

@jakubgs

I am also facing exactly same issue with version 2.6.0 ,

Can you please have get any solution for this , Is this solution merge ?

@cammellos
Copy link
Contributor

@ZainAliSyed24 you need to uninstall 2.6.0 and use the version that is installed through the script, ping me on our discord if you need some help (@cammellos )

@cammellos
Copy link
Contributor

To install, follow this guide if you are on catalina https://github.com/status-im/status-react/blob/develop/nix/KNOWN_ISSUES.md#macos-1015-catalina

@ZainAliSyed24
Copy link

@cammellos Thanks let me uninstall and can you please send me message at discord if possible Syed Zain Ali#1534

jakubgs added a commit that referenced this issue Feb 17, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
@Guolanlan
Copy link

macOS Monterey,But this .......
Andy:status-react guolanlan$ make run-clojure
yarn shadow-cljs watch mobile
Configuring Nix shell for target 'clojure'...
fatal: Couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
(use '--show-trace' to show detailed location information)
fatal: Couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128

   … while fetching the input 'git+https://github.com/tbenr/react-native-audio-toolkit.git?ref=v2.0.3-status-v6&rev=7ae9055cf6169b30f5089bda7bfcfc1c40a715e5'

   … while evaluating the attribute 'buildCommand' of the derivation 'react-native-audio-toolkit.git'

   at /nix/store/4aynlbs95bakwhwqsw5sjs7g5d0jxy5x-nixpkgs-source/pkgs/stdenv/generic/make-derivation.nix:205:7:

      204|     // (lib.optionalAttrs (attrs ? name || (attrs ? pname && attrs ? version)) {
      205|       name =
         |       ^
      206|         let

   … while evaluating 'escapeShellArg'

   at /nix/store/4aynlbs95bakwhwqsw5sjs7g5d0jxy5x-nixpkgs-source/lib/strings.nix:318:20:

      317|   */
      318|   escapeShellArg = arg: "'${replaceStrings ["'"] ["'\\''"] (toString arg)}'";
         |                    ^
      319|

   … from call site

@Guolanlan
Copy link

Guolanlan commented Feb 28, 2022

Nix Uninstalled and reinstalled,Version 2.6.1. but still not,why ???

@jakubgs
Copy link
Member Author

jakubgs commented Feb 28, 2022

Are you asking why the git tag issue hasn't been fixed in any of the Nix versions after 2.4?

Not really a question for us. More for the Nix developers.

@Guolanlan
Copy link

Then I “make run clojure”. It didn't compile successfully. Isn't it your problem? Is it Nix's problem?? How can I compile IOS status without this?

@cammellos
Copy link
Contributor

@Guolanlan you need to completely uninstall nix and run make run-clojure, it will install the right version of nix for you, nix should not be installed manually.
Here's a guide to uninstall nix completely (if you are on one of those macs https://gist.github.com/chriselsner/3ebe962a4c4bd1f14d39897fc5619732 )

jakubgs added a commit that referenced this issue Mar 7, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Mar 7, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Mar 7, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Mar 8, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Mar 8, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

I also rewrote `nix/scripts/setup.sh` and `/nix/scripts/purge.sh` to support
different types of installations. Both single-user and multi-user, as some
operating systems have issues with multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Related changes:
* status-im/infra-ci@84947b9f
* status-im/infra-ci@bb98f5f3
* status-im/infra-ci@f75d524d
* status-im/infra-ci@d1fc92cd
* status-im/infra-ci@87c4091e
* status-im/infra-ci@8d6b6b3f
* status-im/infra-ci@c4f13285
* status-im/infra-ci@38ac698d

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Apr 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

I also rewrote `nix/scripts/setup.sh` and `/nix/scripts/purge.sh` to support
different types of installations. Both single-user and multi-user, as some
operating systems have issues with multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Related changes:
* status-im/infra-ci@84947b9f
* status-im/infra-ci@bb98f5f3
* status-im/infra-ci@f75d524d
* status-im/infra-ci@d1fc92cd
* status-im/infra-ci@87c4091e
* status-im/infra-ci@8d6b6b3f
* status-im/infra-ci@c4f13285
* status-im/infra-ci@38ac698d

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Apr 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

I also rewrote `nix/scripts/setup.sh` and `/nix/scripts/purge.sh` to support
different types of installations. Both single-user and multi-user, as some
operating systems have issues with multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Related changes:
* status-im/infra-ci@84947b9f
* status-im/infra-ci@bb98f5f3
* status-im/infra-ci@f75d524d
* status-im/infra-ci@d1fc92cd
* status-im/infra-ci@87c4091e
* status-im/infra-ci@8d6b6b3f
* status-im/infra-ci@c4f13285
* status-im/infra-ci@38ac698d

Signed-off-by: Jakub Sokołowski <[email protected]>
jakubgs added a commit that referenced this issue Apr 11, 2022
Due to changes in how Nix handles Git refs we need to specify
`refs/tags/` prefix in `package.json` to avoid the following error:
```
fatal: couldn't find remote ref refs/heads/v2.0.3-status-v6
error: program 'git' failed with exit code 128
```

I also had to rewrite some logic in `nix/scripts/source.sh` in order to
take account of single-user and multi-user installations.
We default to multi-user for Darwin, but not for any other OS due to
discovered issues with `nix-daemon` socket on Arch and open file limits.

I also rewrote `nix/scripts/setup.sh` and `/nix/scripts/purge.sh` to support
different types of installations. Both single-user and multi-user, as some
operating systems have issues with multi-user installations.

Resolves: #12832
Depends on: status-im/status-jenkins-lib#37

Related changes:
* status-im/infra-ci@84947b9f
* status-im/infra-ci@bb98f5f3
* status-im/infra-ci@f75d524d
* status-im/infra-ci@d1fc92cd
* status-im/infra-ci@87c4091e
* status-im/infra-ci@8d6b6b3f
* status-im/infra-ci@c4f13285
* status-im/infra-ci@38ac698d

Signed-off-by: Jakub Sokołowski <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants