diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-01-07 13:23:52 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-06-08 16:56:08 -0400 |
commit | 65ce8330427114c2827d00a658d2e5887349c76a (patch) | |
tree | 1e2058e9299582057460c52cb4786f7d485900a3 | |
parent | 419f9b3b3b7c3993d73e67090822d0869a58eacd (diff) |
gitian: install signapple in gitian-osx-signer.yml
Github-Pull: #20880
Rebased-From: 42bb1ea363286b088257cabccb686ef1887c1d3b
-rw-r--r-- | contrib/gitian-descriptors/gitian-osx-signer.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/gitian-descriptors/gitian-osx-signer.yml b/contrib/gitian-descriptors/gitian-osx-signer.yml index a4f3219c22..5f0501756d 100644 --- a/contrib/gitian-descriptors/gitian-osx-signer.yml +++ b/contrib/gitian-descriptors/gitian-osx-signer.yml @@ -7,9 +7,13 @@ architectures: - "amd64" packages: - "faketime" +- "python3-pip" remotes: - "url": "https://github.com/bitcoin-core/bitcoin-detached-sigs.git" "dir": "signature" +- "url": "https://github.com/achow101/signapple.git" + "dir": "signapple" + "commit": "c7e73aa27a7615ac9506559173f787e2906b25eb" files: - "bitcoin-osx-unsigned.tar.gz" script: | @@ -30,6 +34,13 @@ script: | chmod +x ${WRAP_DIR}/${prog} done + # Install signapple + cd signapple + python3 -m pip install -U pip setuptools + python3 -m pip install . + export PATH="$HOME/.local/bin":$PATH + cd .. + UNSIGNED=bitcoin-osx-unsigned.tar.gz SIGNED=bitcoin-osx-signed.dmg |