From: Petr Vorel <petr.vorel@xxxxxxxxx> That helps readability when reviewing logs. Signed-off-by: Petr Vorel <pvorel@xxxxxxx> --- Tested: https://github.com/pevik/ima-evm-utils/actions/runs/4177976359/jobs/7236222413 .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c76c70a..e3dcf3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -192,7 +192,12 @@ jobs: INSTALL="${INSTALL%%/*}" if [ "$VARIANT" ]; then ARCH="$ARCH" ./ci/$INSTALL.$VARIANT.sh; fi ARCH="$ARCH" CC="$CC" TSS="$TSS" ./ci/$INSTALL.sh - if [ "$COMPILE_SSL" ]; then COMPILE_SSL="$COMPILE_SSL" VARIANT="$VARIANT" ./tests/install-openssl3.sh; fi + + - name: Build openSSL + run: | + if [ "$COMPILE_SSL" ]; then + COMPILE_SSL="$COMPILE_SSL" VARIANT="$VARIANT" ./tests/install-openssl3.sh; \ + fi - name: Build swtpm run: | -- 2.39.1