@@ -95,15 +95,15 @@ def sign():
95
95
if args .windows :
96
96
print ('\n Signing ' + args .version + ' Windows' )
97
97
subprocess .check_call ('cp inputs/bitcoin-' + args .version + '-win-unsigned.tar.gz inputs/bitcoin-win-unsigned.tar.gz' , shell = True )
98
- subprocess .check_call (['bin/gbuild' , '-i ' , '--commit' , 'signature=' + args .commit , '../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml' ])
98
+ subprocess .check_call (['bin/gbuild' , '--skip-image' , '--upgrade ' , '--commit' , 'signature=' + args .commit , '../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml' ])
99
99
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' ])
100
100
subprocess .check_call ('mv build/out/bitcoin-*win64-setup.exe ../bitcoin-binaries/' + args .version , shell = True )
101
101
subprocess .check_call ('mv build/out/bitcoin-*win32-setup.exe ../bitcoin-binaries/' + args .version , shell = True )
102
102
103
103
if args .macos :
104
104
print ('\n Signing ' + args .version + ' MacOS' )
105
105
subprocess .check_call ('cp inputs/bitcoin-' + args .version + '-osx-unsigned.tar.gz inputs/bitcoin-osx-unsigned.tar.gz' , shell = True )
106
- subprocess .check_call (['bin/gbuild' , '-i ' , '--commit' , 'signature=' + args .commit , '../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml' ])
106
+ subprocess .check_call (['bin/gbuild' , '--skip-image' , '--upgrade ' , '--commit' , 'signature=' + args .commit , '../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml' ])
107
107
subprocess .check_call (['bin/gsign' , '-p' , args .sign_prog , '--signer' , args .signer , '--release' , args .version + '-osx-signed' , '--destination' , '../gitian.sigs/' , '../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml' ])
108
108
subprocess .check_call ('mv build/out/bitcoin-osx-signed.dmg ../bitcoin-binaries/' + args .version + '/bitcoin-' + args .version + '-osx.dmg' , shell = True )
109
109
0 commit comments