Skip to content

Commit fa193dc

Browse files
author
MarcoFalke
committed
doc: Remove win32 from the release process
1 parent faf666f commit fa193dc

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

contrib/gitian-build.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ def sign():
9898
subprocess.check_call(['bin/gbuild', '-i', '--commit', 'signature='+args.commit, '../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml'])
9999
subprocess.check_call(['bin/gsign', '-p', args.sign_prog, '--signer', args.signer, '--release', args.version+'-win-signed', '--destination', '../gitian.sigs/', '../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml'])
100100
subprocess.check_call('mv build/out/bitcoin-*win64-setup.exe ../bitcoin-binaries/'+args.version, shell=True)
101-
subprocess.check_call('mv build/out/bitcoin-*win32-setup.exe ../bitcoin-binaries/'+args.version, shell=True)
102101

103102
if args.macos:
104103
print('\nSigning ' + args.version + ' MacOS')

doc/release-process.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,15 +221,14 @@ Create (and optionally verify) the signed Windows binaries:
221221
./bin/gsign --signer "$SIGNER" --release ${VERSION}-win-signed --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
222222
./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-win-signed ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
223223
mv build/out/bitcoin-*win64-setup.exe ../bitcoin-${VERSION}-win64-setup.exe
224-
mv build/out/bitcoin-*win32-setup.exe ../bitcoin-${VERSION}-win32-setup.exe
225224
popd
226225

227226
Commit your signature for the signed macOS/Windows binaries:
228227

229228
pushd gitian.sigs
230229
git add ${VERSION}-osx-signed/"${SIGNER}"
231230
git add ${VERSION}-win-signed/"${SIGNER}"
232-
git commit -a
231+
git commit -m "Add ${SIGNER} ${VERSION} signed binaries signatures"
233232
git push # Assuming you can push to the gitian.sigs tree
234233
popd
235234

0 commit comments

Comments
 (0)