From 3dbbf0873441cc4c9437245513b4bf394eecaaed Mon Sep 17 00:00:00 2001 From: Ammar Arif Date: Thu, 10 Oct 2024 14:35:58 -0400 Subject: [PATCH] include ci binaries at PATH --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0ecbd9e87..9ffb7f8754 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,12 +40,13 @@ jobs: name: dojo-bins path: /tmp/bins - run: | + export PATH=/tmp/bins:$PATH chmod +x /tmp/bins/katana chmod +x /tmp/bins/sozo bash scripts/build_cairo_projects.sh /tmp/bins/sozo tar -xzf spawn-and-move-db.tar.gz -C /tmp/ tar -xzf types-test-db.tar.gz -C /tmp/ - KATANA_RUNNER_BIN=/tmp/bins/katana cargo llvm-cov nextest --no-report --all-features --workspace --build-jobs 20 + cargo llvm-cov nextest --no-report --all-features --workspace --build-jobs 20 cargo llvm-cov report --lcov --output-path lcov.info - uses: codecov/codecov-action@v4 with: