From 5975d556fe25e3bcb4478675ad57c547ae8e1754 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Thu, 19 May 2022 15:18:32 +0300 Subject: [PATCH] Debugging runner directories --- .github/workflows/benchmark.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index a67850f0..06ce3263 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -43,13 +43,13 @@ jobs: architecture: "x64" - name: Install requests - run: python -m pip install requests + run: python -m pip install requests && pwd - name: Run benchmark run: python bench/bench.py | tee ${{ matrix.bench.script }}-output.txt - name: Cd 1 level up and create gh-pages dir then cd into it - run: cd .. && mkdir gh-pages && cd gh-pages + run: cd .. && mkdir gh-pages && cd gh-pages && pwd && ls - name: Switch to & checkout gh-pages repo uses: actions/checkout@v3 @@ -66,7 +66,7 @@ jobs: git status - name: Cd back to root before checking out original repo - run: cd .. + run: cd .. && pwd && ls - name: Switch to original luau repo uses: actions/checkout@v3 @@ -79,7 +79,10 @@ jobs: with: name: ${{ matrix.bench.title }} tool: "benchmarkluau" + # This should come from Luau repo output-file-path: ${{ matrix.bench.script }}-output.txt + + # This should map to thebenchmark results repo external-data-json-path: ./dev/bench/data.json alert-threshold: 150% fail-threshold: 200%