aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2015-06-10 13:59:41 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2015-06-15 09:54:14 +0200
commit95aca44095fc8fca0299ff44fb6316e16c6b7c16 (patch)
tree3f36dc4918464871b280f7fc81ebf5ac5a8c7071 /doc
parentc9fd9078ced17f6880274b4764736c5a9ab4eddb (diff)
downloadbitcoin-95aca44095fc8fca0299ff44fb6316e16c6b7c16.tar.xz
gitian: Use the new bitcoin-detached-sigs git repo for OSX signatures
Rather than fetching a signature.tar.gz from somewhere on the net, instruct Gitian to use a signature from a tag in the bitcoin-detached-sigs repository which corresponds to the tag of the release being built. This changes detached-sig-apply.sh to take a dirname rather than a tarball as an argument, though detached-sig-create.sh still outputs a tarball for convenience. Github-Pull: #6269 Rebased-From: c110575a92ebe2e9a58b53d56aafa1f1ae37dbb2
Diffstat (limited to 'doc')
-rw-r--r--doc/release-process.md8
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/release-process.md b/doc/release-process.md
index d3109c6aa2..45c44640ca 100644
--- a/doc/release-process.md
+++ b/doc/release-process.md
@@ -92,15 +92,13 @@ Commit your signature to gitian.sigs:
popd
Wait for OSX detached signature:
- Once the OSX build has 3 matching signatures, Gavin will sign it with the apple App-Store key.
- He will then upload a detached signature to be combined with the unsigned app to create a signed binary.
+ Once the OSX build has 3 matching signatures, it will be signed with the Apple App-Store key.
+ A detached signature will then be committed to the bitcoin-detached-sigs repository, which can be combined with the unsigned app to create a signed binary.
Create the signed OSX binary:
pushd ./gitian-builder
- # Fetch the signature as instructed by Gavin
- cp signature.tar.gz inputs/
- ./bin/gbuild -i ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
+ ./bin/gbuild -i --commit signature=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
./bin/gsign --signer $SIGNER --release ${VERSION}-osx-signed --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
mv build/out/bitcoin-osx-signed.dmg ../bitcoin-${VERSION}-osx.dmg
popd