Skip to content

Commit

Permalink
[GITIAN] Make the setup feature from gitian-build.py create a debian VM
Browse files Browse the repository at this point in the history
Summary:
The script builds an Ubuntu Bionic base image while we are using Debian
Buster.

Test Plan:
  ./contrib/gitian-build.py --setup gitianuser 0.21.11
Check a `base-buster-amd64` image is created.

Reviewers: #bitcoin_abc, deadalnix

Reviewed By: #bitcoin_abc, deadalnix

Differential Revision: https://reviews.bitcoinabc.org/D6935
  • Loading branch information
Fabcien committed Jul 15, 2020
1 parent 1a1cf51 commit 5153554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/gitian-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def setup():
['git', 'clone', 'https://github.com/Bitcoin-ABC/bitcoin-abc.git'])
os.chdir('gitian-builder')
make_image_prog = ['bin/make-base-vm',
'--suite', 'bionic', '--arch', 'amd64']
'--distro', 'debian', '--suite', 'buster', '--arch', 'amd64']
if args.docker:
make_image_prog += ['--docker']
elif not args.kvm:
Expand Down

0 comments on commit 5153554

Please sign in to comment.