diff options
author | Andrew Chow <achow101-github@achow101.com> | 2021-01-07 13:23:52 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-01-07 15:33:19 -0500 |
commit | 42bb1ea363286b088257cabccb686ef1887c1d3b (patch) | |
tree | 16b4ac672bc8a4fe7cda0998e8b5adbaac293df9 | |
parent | b6a71b80d28c79796b557cdb6bae05abb34d1225 (diff) |
gitian: install signapple in gitian-osx-signer.yml
-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 2330ff7736..1bd342a993 100644 --- a/contrib/gitian-descriptors/gitian-osx-signer.yml +++ b/contrib/gitian-descriptors/gitian-osx-signer.yml @@ -8,9 +8,13 @@ architectures: packages: - "faketime" - "xorriso" +- "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: | @@ -31,6 +35,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 |