osmith submitted this change.
jobs/master,gerrit: docker run: 1 arg per line
Move the -i, -u build arguments to separate lines as otherwise it is
easy to overlook them.
Change-Id: Ib31f9bc50e2f18dda631adb90f6a590757088a94
---
M jobs/gerrit-verifications.yml
M jobs/master-builds.yml
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/jobs/gerrit-verifications.yml b/jobs/gerrit-verifications.yml
index 440f032..857a944 100644
--- a/jobs/gerrit-verifications.yml
+++ b/jobs/gerrit-verifications.yml
@@ -59,7 +59,9 @@
-e OSMO_GSM_MANUALS_DIR="/opt/osmo-gsm-manuals" \
-e PARALLEL_MAKE="$PARALLEL_MAKE" \
-e WITH_MANUALS="1" \
- -w /build -i -u build \
+ -w /build \
+ -i \
+ -u build \
-v "$PWD:/build" \
docker_run_ccache: |
CCACHE_DIR="$HOME/ccache/gerrit-verifications"
@@ -76,7 +78,9 @@
-e OSMO_GSM_MANUALS_DIR="/opt/osmo-gsm-manuals" \
-e PARALLEL_MAKE="$PARALLEL_MAKE" \
-e WITH_MANUALS="1" \
- -w /build -i -u build \
+ -w /build \
+ -i \
+ -u build \
-v "$PWD:/build" \
\
-e CCACHE_DIR="/ccache" \
diff --git a/jobs/master-builds.yml b/jobs/master-builds.yml
index 4b2259d..69f4b70 100644
--- a/jobs/master-builds.yml
+++ b/jobs/master-builds.yml
@@ -35,7 +35,9 @@
-e PUBLISH="1" \
-e SSH_AUTH_SOCK=/ssh-agent \
-e WITH_MANUALS="1" \
- -w /build -i -u build \
+ -w /build \
+ -i \
+ -u build \
-v $(readlink -f $SSH_AUTH_SOCK):/ssh-agent \
-v "$PWD:/build" \
-v "$HOME/.ssh:/home/build/.ssh:ro" \
@@ -57,7 +59,9 @@
-e PUBLISH="1" \
-e SSH_AUTH_SOCK=/ssh-agent \
-e WITH_MANUALS="1" \
- -w /build -i -u build \
+ -w /build \
+ -i \
+ -u build \
-v $(readlink -f $SSH_AUTH_SOCK):/ssh-agent \
-v "$PWD:/build" \
-v "$HOME/.ssh:/home/build/.ssh:ro" \
To view, visit change 39354. To unsubscribe, or for help writing mail filters, visit settings.