aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2022-08-22 22:46:34 -0500
committerluigi1111 <luigi1111w@gmail.com>2022-08-22 22:46:34 -0500
commit5e2c851132ad28219ad15eb2d3450cc8eaa60e4c (patch)
treea50206b3290ce25468aaaba4f20532fa17b1b1a5
parentMerge pull request #8428 (diff)
parentBump to v0.18.1.0 (diff)
downloadmonero-5e2c851132ad28219ad15eb2d3450cc8eaa60e4c.tar.xz
Merge pull request #8442
ef1924a Bump to v0.18.1.0 (Seth For Privacy) 89a2df6 Migrate VERSION variable to non-export (Seth For Privacy) b83874e Set version in ENV var (Seth For Privacy) bb955d1 Bump Gitian build instructions to v0.18.0.0 (Seth For Privacy)
-rw-r--r--contrib/gitian/DOCKRUN.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md
index 96998b1fe..06e4894a2 100644
--- a/contrib/gitian/DOCKRUN.md
+++ b/contrib/gitian/DOCKRUN.md
@@ -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
@@ -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
@@ -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
```