From 6156b6531fdbd9e348f16553ae2cdb9a8ddebb81 Mon Sep 17 00:00:00 2001 From: Clement Rey Date: Wed, 5 Jul 2023 09:49:34 +0200 Subject: [PATCH] run the workflow with --release to hopefully inherit artifacts --- .github/workflows/reusable_build_and_test_wheels.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable_build_and_test_wheels.yml b/.github/workflows/reusable_build_and_test_wheels.yml index f5bf66353387..4c295223bc27 100644 --- a/.github/workflows/reusable_build_and_test_wheels.yml +++ b/.github/workflows/reusable_build_and_test_wheels.yml @@ -276,7 +276,8 @@ jobs: - name: Run e2e roundtrip tests if: needs.set-config.outputs.RUN_TESTS == 'true' shell: bash - run: RUST_LOG=debug scripts/ci/run_e2e_roundtrip_tests.py --no-build # 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 - name: Cache RRD dataset if: needs.set-config.outputs.RUN_TESTS == 'true'