Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions gitian-building.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gitian Building

Last updated: December 12, 2020
Last updated: December 25, 2020

*This is based on fanquake's
[gitian-building](https://github.com/fanquake/core-review/blob/master/gitian-building/README.md),
Expand Down Expand Up @@ -167,17 +167,21 @@ export VERSION=0.21.0rc3
export SIGNER=your_username
export USE_DOCKER=1

pushd gitian.sigs
git checkout -b $SIGNER-$VERSION
popd

pushd bitcoin
git checkout v$VERSION
popd
```

## Build Unsigned Sigs

Since we'll be creating a PR to the `gitian.sigs` repo, make a new branch off master:

```bash
pushd gitian.sigs
git checkout -b $SIGNER-$VERSION-unsigned master
popd
```

All of the instructions in this section are to be run from within the
`gitian-builder` directory:

Expand Down Expand Up @@ -277,6 +281,16 @@ You would normally run both of these (macOS and Windows) and submit the results
in one PR. These build far faster than the builds for the unsigned signatures --
within a minute or so, or even a few seconds.

Since we'll be creating a PR to the `gitian.sigs` repo, make a new branch off master:

```bash
pushd gitian.sigs
git checkout -b $SIGNER-$VERSION-signed master
popd
```

Then navigate to `gitian-builder`

```
pushd gitian-builder
```
Expand Down