From ea9d971460132863846d67bb1f74e5a2da2cf647 Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Wed, 5 Jul 2023 11:19:29 +0200 Subject: [PATCH] srsly cargo? --- .github/workflows/reusable_build_and_test_wheels.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable_build_and_test_wheels.yml b/.github/workflows/reusable_build_and_test_wheels.yml index 4c295223bc27d..442f4ec6dbb13 100644 --- a/.github/workflows/reusable_build_and_test_wheels.yml +++ b/.github/workflows/reusable_build_and_test_wheels.yml @@ -276,8 +276,11 @@ jobs: - name: Run e2e roundtrip tests if: needs.set-config.outputs.RUN_TESTS == 'true' shell: bash + # --release so we can inherit from some of the artifacts that maturin has just built before + # --target x86_64-unknown-linux-gnu because otherwise cargo loses the target cache... even though this is the target anyhow... + # --no-build because rerun-sdk is already built and installed # NOTE: run with --release so we can reuse some of the "Build Wheel"'s job artifacts, hopefully - run: RUST_LOG=debug scripts/ci/run_e2e_roundtrip_tests.py --release --no-build # rerun-sdk is already built and installed + run: RUST_LOG=debug scripts/ci/run_e2e_roundtrip_tests.py --release --target x86_64-unknown-linux-gnu --no-build - name: Cache RRD dataset if: needs.set-config.outputs.RUN_TESTS == 'true'