From 105c05a15c5533cf2aadb0ede263f110f44426a0 Mon Sep 17 00:00:00 2001 From: Pradnya Khalate <148914294+khalatepradnya@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:03:46 -0800 Subject: [PATCH] Enable nightly integration tests for `anyon` target (#2308) Signed-off-by: Pradnya Khalate --- .github/workflows/integration_tests.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 5c5bc28300..5619f5baea 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -336,11 +336,7 @@ jobs: fi - name: Setup anyon account - # This step is currently bypassed during nightly runs due to - # maintenance. Restore the if check to the original value when - # maintenance is complete. - #if: github.event_name == 'schedule' || inputs.target == 'nightly' || inputs.target == 'anyon' - if: inputs.target == 'anyon' + if: github.event_name == 'schedule' || inputs.target == 'nightly' || inputs.target == 'anyon' run: | curl -X POST --user "${{ secrets.ANYON_USERNAME }}:${{ secrets.ANYON_PASSWORD }}" -H "Content-Type: application/json" https://api.anyon.cloud:5000/login > credentials.json id_token=`cat credentials.json | jq -r '."id_token"'` @@ -349,11 +345,7 @@ jobs: echo "refresh: $refresh_token" >> ~/.anyon_config - name: QIR syntax check (Anyon) - # This step is currently bypassed during nightly runs due to - # maintenance. Restore the if check to the original value when - # maintenance is complete. - #if: github.event_name == 'schedule' || inputs.target == 'nightly' || inputs.target == 'anyon' - if: inputs.target == 'anyon' + if: github.event_name == 'schedule' || inputs.target == 'nightly' || inputs.target == 'anyon' run: | echo "### QIR syntax check (Anyon)" >> $GITHUB_STEP_SUMMARY export CUDAQ_LOG_LEVEL="info"