From 4af0edd8c5884983e045fdc67873073d07ba5cc8 Mon Sep 17 00:00:00 2001 From: Jim Newsome Date: Fri, 29 Oct 2021 18:48:36 -0500 Subject: [PATCH 1/2] Dump pipeline vars to stdout --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a99ed64..cca9228 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,6 +136,9 @@ default: # Extra error checking - set -euo pipefail + # Dump PL_* vars to stdout + - env | grep ^PL_ | sort + # Un-export built-in env vars. Some of these have surprisingly # powerful secrets. Unexporting leaves them set in the shell, but doesn't # implicitly pass them to every spawned process. For a process that needs them, pass explicitly: -- GitLab From bf276e897067258425de1492ab8cc1f8d3ee670b Mon Sep 17 00:00:00 2001 From: Jim Newsome Date: Fri, 29 Oct 2021 18:53:40 -0500 Subject: [PATCH 2/2] Save tornettools generate log --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cca9228..8e40370 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -470,6 +470,7 @@ tornettools-stage: - $SIMDIR/mappings.txt - $SIMDIR/tor-err.txt - $SIMDIR/tor-warn.txt + - $SIMDIR/tornettools.generate*.log # Full data for a few clients - $SIMDIR/shadow.data/hosts/markovclient[0-3] # Full data for a few servers -- GitLab