diff options
author | selsta <selsta@sent.at> | 2022-07-28 23:14:02 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2022-07-28 23:14:02 +0200 |
commit | 309f6ba3f5bc0e6b39a0ba709d585a56113169dd (patch) | |
tree | b115c8843ca9a345d388655d9d93f3dd9656aa2c /contrib | |
parent | Merge pull request #8435 (diff) | |
download | monero-309f6ba3f5bc0e6b39a0ba709d585a56113169dd.tar.xz |
build: prepare v0.18.1.0
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gitian/DOCKRUN.md | 12 | ||||
-rw-r--r-- | contrib/gitian/README.md | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 96998b1fe..69efeeea3 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -57,7 +57,7 @@ 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 +./dockrun.sh v0.18.1.0 ``` The build should run to completion with no errors, and will display the SHA256 checksums @@ -78,7 +78,7 @@ e.g. ```bash # Run build processes with 8 threads -OPT="-j 8" ./dockrun.sh v0.17.3.0 +OPT="-j 8" ./dockrun.sh v0.18.1.0 ``` Post-build @@ -98,16 +98,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 (be sure to replace `v0.18.1.0` with the version being built): ```bash docker exec -it gitrun /bin/bash -ls -la out/v0.17.3.0/ +ls -la out/v0.18.1.0/ ``` -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 (be sure to replace `v0.18.1.0` with the version being built): ```bash mkdir out -docker cp gitrun:/home/ubuntu/out/v0.17.3.0 out +docker cp gitrun:/home/ubuntu/out/v0.18.1.0 out ``` diff --git a/contrib/gitian/README.md b/contrib/gitian/README.md index 5211b8409..87c9ead9c 100644 --- a/contrib/gitian/README.md +++ b/contrib/gitian/README.md @@ -133,7 +133,7 @@ Common setup part: su - gitianuser GH_USER=YOUR_GITHUB_USER_NAME -VERSION=v0.18.0.0 +VERSION=v0.18.1.0 ``` Where `GH_USER` is your GitHub user name and `VERSION` is the version tag you want to build. |