We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af183a4 commit a0b2dd3Copy full SHA for a0b2dd3
.github/workflows/benchmarks.yml
@@ -4,6 +4,16 @@ on:
4
pull_request:
5
branches:
6
- main
7
+ workflow_dispatch:
8
+ inputs:
9
+ halt-for-connection:
10
+ description: 'Should this workflow run wait for a remote connection?'
11
+ type: choice
12
+ required: true
13
+ default: 'no'
14
+ options:
15
+ - 'yes'
16
+ - 'no'
17
18
jobs:
19
# jax-build:
@@ -61,7 +71,10 @@ jobs:
61
71
with:
62
72
repository: openxla/xla # Replace with your fork if needed
63
73
path: xla
64
-
74
+ - name: Wait For Connection
75
+ uses: google-ml-infra/actions/ci_connection@main
76
+ with:
77
+ halt-dispatch-input: ${{ inputs.halt-for-connection }}
65
78
- name: Install dependencies
66
79
working-directory: xla
67
80
run: |
@@ -85,8 +98,3 @@ jobs:
85
98
86
99
run: bazel build -c opt --config=cuda //xla/...
87
100
88
89
90
91
92
0 commit comments