We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa84cd5 commit 63ac023Copy full SHA for 63ac023
1 file changed
.github/workflows/CI.yml
@@ -9,6 +9,7 @@ on:
9
10
jobs:
11
test-cpu-github:
12
+ if: ${{ ! contains(github.event.pull_request.labels.*.name, 'run ci cpu') }}
13
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
14
with:
15
versions: '["1.12"]'
@@ -20,11 +21,12 @@ jobs:
20
21
22
# Job pour le runner self-hosted kkt (GPU/CUDA)
23
test-gpu-kkt:
24
+ if: ${{ ! contains(github.event.pull_request.labels.*.name, 'run ci gpu') }}
25
26
27
versions: '["1"]'
28
runs_on: '[["kkt"]]'
29
runner_type: 'self-hosted'
30
use_ct_registry: false
31
secrets:
- SSH_KEY: ${{ secrets.SSH_KEY }}
32
+ SSH_KEY: ${{ secrets.SSH_KEY }}
0 commit comments