From 437b34535bb08f4318b9eb458a48c210463cb737 Mon Sep 17 00:00:00 2001 From: Michael Graeb Date: Fri, 29 Sep 2023 12:58:53 -0700 Subject: [PATCH] --build-dir --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbd6f6da..8fb6ccef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,13 @@ jobs: run: python scripts/lint-python.py - name: Check that benchmark files are up to date + # run build script and see if any files change run: | python scripts/build-benchmarks.py git diff --exit-code - name: Build s3-benchrunner-c - run: python runners/s3-benchrunner-c/scripts/build.py + run: python runners/s3-benchrunner-c/scripts/build.py --build-dir ${{runner.temp}}/build/c - name: Build s3-benchrunner-crt-java - run: python runners/s3-benchrunner-crt-java/scripts/build.py + run: python runners/s3-benchrunner-crt-java/scripts/build.py --build-dir ${{runner.temp}}/build/crt-java