From 06e189963e4ee8da7958a22369bad856423f1b54 Mon Sep 17 00:00:00 2001 From: Shylie Date: Wed, 29 May 2024 07:26:45 -0400 Subject: [PATCH] Print directory contents --- .gitea/workflows/make_png.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/make_png.yaml b/.gitea/workflows/make_png.yaml index 6720249..819410d 100644 --- a/.gitea/workflows/make_png.yaml +++ b/.gitea/workflows/make_png.yaml @@ -24,9 +24,9 @@ jobs: - name: Build previous run: cmake -S prev -B prev/build -DGLERMINAL_TEST=ON && cmake --build prev/build - name: Generate PNG file for current - run: cd curr/build/tests && echo $PWD && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic + run: cd curr/build/tests && ls $PWD && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic - name: Generate PNG file for previous - run: cd prev/build/tests && echo $PWD && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic + run: cd prev/build/tests && ls $PWD && XDG_RUNTIME_DIR=$PWD xvfb-run -a ./test-basic - name: Upload current PNG uses: actions/upload-artifact@v3 with: