diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 242501480f..23a7e8cff4 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -754,7 +754,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 @@ -874,7 +875,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 ecc9866492..01b9c792ba 100644 --- a/.github/workflows/nvqc_regression_tests.yml +++ b/.github/workflows/nvqc_regression_tests.yml @@ -334,7 +334,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