Skip to content

Commit 3ce9116

Browse files
committed
fix syntax
1 parent cca388d commit 3ce9116

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/_build_plugin.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ on:
1111
type: string
1212
description: Runner type for the test
1313
default: linux.12xlarge
14-
14+
timeout-minutes:
15+
required: false
16+
type: number
17+
description: Timeout in minutes for the build job
18+
default: 120
1519
secrets:
1620
gcloud-service-key:
1721
required: true
1822
description: Secret to access Bazel build cache
1923
jobs:
2024
build:
2125
runs-on: ${{ inputs.runner }}
26+
timeout-minutes: ${{ inputs.timeout-minutes }}
2227
container:
2328
image: ${{ inputs.dev-image }}
2429
env:

.github/workflows/_build_torch_xla.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,19 @@ on:
1515
type: string
1616
description: Runner type for the test
1717
default: linux.12xlarge
18-
18+
timeout-minutes:
19+
required: false
20+
type: number
21+
description: Timeout in minutes for the build job
22+
default: 120
1923
secrets:
2024
gcloud-service-key:
2125
required: true
2226
description: Secret to access Bazel build cache
2327
jobs:
2428
build:
2529
runs-on: ${{ inputs.runner }}
30+
timeout-minutes: ${{ inputs.timeout-minutes }}
2631
container:
2732
image: ${{ inputs.dev-image }}
2833
env:

0 commit comments

Comments
 (0)