Merge pull request #3926

c337e2e Update gitian README.md (Wladimir J. van der Laan)
This commit is contained in:
Wladimir J. van der Laan 2014-03-21 14:53:29 +01:00
commit 0a3acf260a
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 7 additions and 20 deletions

View File

@ -25,30 +25,17 @@ Once you've got the right hardware and software:
mkdir gitian-builder/inputs
cd gitian-builder/inputs
# Get inputs (see doc/release-process.md for exact inputs needed and where to get them)
...
cd ../..
# Create base images
cd gitian-builder
bin/make-base-vm --arch i386
bin/make-base-vm --arch amd64
bin/make-base-vm --suite precise --arch i386
bin/make-base-vm --suite precise --arch amd64
cd ..
# Build Linux release:
cd bitcoin
git pull
cd ../gitian-builder
git pull
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
# Get inputs (see doc/release-process.md for exact inputs needed and where to get them)
...
# Build Win32 dependencies: (only needs to be done once, or when dependency versions change)
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/boost-win32.yml
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/deps-win32.yml
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/qt-win32.yml
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/protobuf-win32.yml
# Build Win32 release:
./bin/gbuild --commit bitcoin=HEAD ../bitcoin/contrib/gitian-descriptors/gitian-win32.yml
# For further build instructions see doc/release-notes.md
...
---------------------