From bb955d1a737e6fc6398e5888604c4fa1ff49765e Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Mon, 18 Jul 2022 08:32:55 -0400 Subject: [PATCH 1/4] Bump Gitian build instructions to v0.18.0.0 --- contrib/gitian/DOCKRUN.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 96998b1fe..1f19a6eec 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.0.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.0.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.0.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.0.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.0.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.0.0 out ``` From b83874e9bdba564e8f2262ba4e87d2f8d728c5ed Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Mon, 18 Jul 2022 10:14:44 -0400 Subject: [PATCH 2/4] Set version in ENV var --- contrib/gitian/DOCKRUN.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 1f19a6eec..8ea277940 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -41,6 +41,7 @@ set your GitHub account name for the script to use: ```bash export GH_USER= +export VERSION=v0.18.0.0 ``` * PGP keys - if you don't have one already, you can use `gpg --quick-gen-key` to generate it. @@ -57,7 +58,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.18.0.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.18.0.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.18.0.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.18.0.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.0.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.18.0.0 out +docker cp gitrun:/home/ubuntu/out/$VERSION out ``` From 89a2df67cd8b345d0e00e3fdf6b18a8af6abf877 Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Mon, 18 Jul 2022 10:32:54 -0400 Subject: [PATCH 3/4] Migrate VERSION variable to non-export --- contrib/gitian/DOCKRUN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 8ea277940..4d48e02db 100644 --- a/contrib/gitian/DOCKRUN.md +++ b/contrib/gitian/DOCKRUN.md @@ -41,7 +41,6 @@ set your GitHub account name for the script to use: ```bash export GH_USER= -export VERSION=v0.18.0.0 ``` * PGP keys - if you don't have one already, you can use `gpg --quick-gen-key` to generate it. @@ -58,6 +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 +VERSION=v0.18.0.0 ./dockrun.sh $VERSION ``` From ef1924a9cfdd86aa7c55e9e92f8885f2e5b915be Mon Sep 17 00:00:00 2001 From: Seth For Privacy Date: Tue, 9 Aug 2022 08:20:54 -0400 Subject: [PATCH 4/4] Bump to v0.18.1.0 --- contrib/gitian/DOCKRUN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md index 4d48e02db..06e4894a2 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 -VERSION=v0.18.0.0 +VERSION=v0.18.1.0 ./dockrun.sh $VERSION ```