aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth For Privacy <seth@sethforprivacy.com>2021-12-02 16:52:32 +0000
committerGitHub <noreply@github.com>2021-12-02 16:52:32 +0000
commit52612e7a12d5d350979bed940b310a57e9ab4a14 (patch)
tree6d51db1b29aa9cb70951ecddd87fac5ba86e9b34
parentAdd git clone and cd commands for initial prep (diff)
downloadmonero-52612e7a12d5d350979bed940b310a57e9ab4a14.tar.xz
Add archive details to post-build section
Also moved the tail of in-progress logs to two distinct and precise tail commands, was a good recommendation by @hyc.
-rw-r--r--contrib/gitian/DOCKRUN.md15
1 files changed, 13 insertions, 2 deletions
diff --git a/contrib/gitian/DOCKRUN.md b/contrib/gitian/DOCKRUN.md
index 9847534bb..715ac3ff8 100644
--- a/contrib/gitian/DOCKRUN.md
+++ b/contrib/gitian/DOCKRUN.md
@@ -87,15 +87,26 @@ e.g.
OPT="-j 8" ./dockrun.sh v0.17.3.0
```
-You can also examine the build and install logs by running a shell in the container, e.g.
+Post-build
+----------
+
+You can examine the build and install logs by running a shell in the container, e.g.
```bash
# Tail running logs
docker exec -it gitrun /bin/bash
-tail -F builder/var/*.log
+tail -F builder/var/install.log
+tail -F builder/var/build.log
# Inspect logs, in format install-<OS>.log and build-<OS>.log
docker exec -it gitrun /bin/bash
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):
+
+```bash
+docker exec -it gitrun /bin/bash
+ls -la out/v0.17.3.0/
+```