From bf2c70575a826d916580eded56b5bc00bb77f915 Mon Sep 17 00:00:00 2001 From: Ben Howe Date: Mon, 21 Oct 2024 23:56:53 +0000 Subject: [PATCH] Disable building_kernels.py test for NVQC target Signed-off-by: Ben Howe --- .github/workflows/integration_tests.yml | 6 ++++-- .github/workflows/nvqc_regression_tests.yml | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 506da931e4..8c906df540 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -683,7 +683,8 @@ jobs: echo ":x: Test failed (failed to execute): $ex" >> $GITHUB_STEP_SUMMARY test_err_sum=$((test_err_sum+1)) fi - else + # building_kernels.py is disabled due to https://github.com/NVIDIA/cuda-quantum/issues/2299. + elif [[ "$ex" != *"building_kernels"* ]]; then # Only run examples that are not target-specific (e.g., ionq, iqm) if ! grep -q "set_target" "$ex"; then # Use --target command line option to run these examples with nvqc @@ -799,7 +800,8 @@ jobs: echo ":x: Test failed (failed to execute): $ex" >> $GITHUB_STEP_SUMMARY test_err_sum=$((test_err_sum+1)) fi - else + # building_kernels.py is disabled due to https://github.com/NVIDIA/cuda-quantum/issues/2299. + elif [[ "$ex" != *"building_kernels"* ]]; then # Only run examples that are not target-specific (e.g., ionq, iqm) if ! grep -q "set_target" "$ex"; then # Use --target command line option to run these examples with nvqc diff --git a/.github/workflows/nvqc_regression_tests.yml b/.github/workflows/nvqc_regression_tests.yml index a39150cfaa..95d6ccf853 100644 --- a/.github/workflows/nvqc_regression_tests.yml +++ b/.github/workflows/nvqc_regression_tests.yml @@ -317,7 +317,8 @@ jobs: echo ":x: Test failed (failed to execute): $ex" >> $GITHUB_STEP_SUMMARY test_err_sum=$((test_err_sum+1)) fi - else + # building_kernels.py is disabled due to https://github.com/NVIDIA/cuda-quantum/issues/2299. + elif [[ "$ex" != *"building_kernels"* ]]; then # Only run examples that are not target-specific (e.g., ionq, iqm) if ! grep -q "set_target" "$ex"; then # Use --target command line option to run these examples with nvqc