Merge pull request #8491

876c08d Bump Gitian build instructions to v0.18.1.0 [Release Branch] (Seth For Privacy)
pull/470/head
luigi1111 2 years ago
commit 57e57c239b
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -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. version to build as its only argument, e.g.
```bash ```bash
./dockrun.sh v0.18.1.0 VERSION=v0.18.1.0
./dockrun.sh $VERSION
``` ```
The build should run to completion with no errors, and will display the SHA256 checksums The build should run to completion with no errors, and will display the SHA256 checksums
@ -78,7 +79,7 @@ e.g.
```bash ```bash
# Run build processes with 8 threads # Run build processes with 8 threads
OPT="-j 8" ./dockrun.sh v0.18.1.0 OPT="-j 8" ./dockrun.sh $VERSION
``` ```
Post-build Post-build
@ -98,16 +99,16 @@ more builder/var/install-linux.log
more builder/var/build-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.18.1.0` with the version being built): You can find the compiled archives inside of the container at the following directory:
```bash ```bash
docker exec -it gitrun /bin/bash docker exec -it gitrun /bin/bash
ls -la out/v0.18.1.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.18.1.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 ```bash
mkdir out mkdir out
docker cp gitrun:/home/ubuntu/out/v0.18.1.0 out docker cp gitrun:/home/ubuntu/out/$VERSION out
``` ```

Loading…
Cancel
Save