Skip to content

Commit 80a1109

Browse files
committed
chore(gpu): fix condition to trigger unsigned gpu test
1 parent 5439637 commit 80a1109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gpu_unsigned_integer_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ env:
1313
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
1414
FAST_TESTS: TRUE
1515
NIGHTLY_TESTS: FALSE
16+
IS_PULL_REQUEST: ${{ github.event_name == 'pull_request' }}
1617
CHECKOUT_TOKEN: ${{ secrets.REPO_CHECKOUT_TOKEN || secrets.GITHUB_TOKEN }}
1718
# Secrets will be available only to zama-ai organization members
1819
SECRETS_AVAILABLE: ${{ secrets.JOB_SECRET != '' }}
@@ -22,7 +23,6 @@ on:
2223
# Allows you to run this workflow manually from the Actions tab as an alternative.
2324
workflow_dispatch:
2425
pull_request:
25-
types: [ labeled ]
2626
schedule:
2727
# Nightly tests @ 1AM after each work day
2828
- cron: "0 1 * * MON-FRI"
@@ -66,11 +66,11 @@ jobs:
6666
6767
setup-instance:
6868
name: Setup instance (cuda-unsigned-integer-tests)
69+
runs-on: ubuntu-latest
6970
needs: should-run
7071
if: (github.event_name == 'schedule' && github.repository == 'zama-ai/tfhe-rs') ||
7172
github.event_name == 'workflow_dispatch' ||
7273
needs.should-run.outputs.gpu_test == 'true'
73-
runs-on: ubuntu-latest
7474
outputs:
7575
runner-name: ${{ steps.start-remote-instance.outputs.label || steps.start-github-instance.outputs.runner_group }}
7676
steps:

0 commit comments

Comments
 (0)