From 34ebb576b49c274aa1f2d0c85b9c8b22d4e79d1d Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Thu, 19 May 2022 16:25:40 +0300 Subject: [PATCH] Debug: reorganize Print parent directory after benchmark --- .github/workflows/benchmark.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 9ca0f32d..1a4731f7 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -34,9 +34,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Print parent directory - run: cd .. && ls - - name: Build Luau run: make config=release luau luau-analyze @@ -49,7 +46,11 @@ jobs: run: python -m pip install requests && pwd - name: Run benchmark - run: python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt + run: | + python bench/bench.py | tee ../${{ matrix.bench.script }}-output.txt + + - name: Print parent directory + run: cd .. && ls - name: Cd 1 level up and create gh-pages dir then cd into it run: ls && cd .. && mkdir gh-pages && cd gh-pages && pwd && ls