Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Gitian build instructions to v0.18.1.0 #8442

Merged
merged 4 commits into from
Aug 23, 2022
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
13 changes: 7 additions & 6 deletions contrib/gitian/DOCKRUN.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ The dockrun.sh script will do everything to build the binaries. Just specify the
version to build as its only argument, e.g.

```bash
./dockrun.sh v0.17.3.0
VERSION=v0.18.1.0
./dockrun.sh $VERSION
```

The build should run to completion with no errors, and will display the SHA256 checksums
Expand All @@ -78,7 +79,7 @@ e.g.

```bash
# Run build processes with 8 threads
OPT="-j 8" ./dockrun.sh v0.17.3.0
OPT="-j 8" ./dockrun.sh $VERSION
```

Post-build
Expand All @@ -98,16 +99,16 @@ more builder/var/install-linux.log
more builder/var/build-linux.log
```

You can find the compiled archives inside of the container at the following directory (be sure to replace `v0.17.3.0` with the version being built):
You can find the compiled archives inside of the container at the following directory:

```bash
docker exec -it gitrun /bin/bash
ls -la out/v0.17.3.0/
ls -la out/$VERSION/
```

To copy the compiled archives to the local host out of the Docker container, you can run the following (be sure to replace `v0.17.3.0` with the version being built):
To copy the compiled archives to the local host out of the Docker container, you can run the following:

```bash
mkdir out
docker cp gitrun:/home/ubuntu/out/v0.17.3.0 out
docker cp gitrun:/home/ubuntu/out/$VERSION out
```