@@ -2,15 +2,15 @@ name: CI
2
2
3
3
on :
4
4
schedule :
5
- - cron : ' 30 9 * * *' # Pacific Time 01:30 AM in UTC
5
+ - cron : " 30 9 * * *" # Pacific Time 01:30 AM in UTC
6
6
pull_request :
7
7
types :
8
8
- opened
9
9
- reopened
10
10
- ready_for_review
11
11
- synchronize
12
12
paths-ignore :
13
- - ' **.md'
13
+ - " **.md"
14
14
workflow_dispatch :
15
15
inputs :
16
16
PUBLISH :
25
25
required : true
26
26
MERGE_BUMPED_MANIFEST :
27
27
type : boolean
28
- description : ' (used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch'
28
+ description : " (used if BUMP_MANIFEST=true) If true: attempt to PR/merge manifest branch"
29
29
default : false
30
30
required : false
31
31
SOURCE_OVERRIDES :
32
32
type : string
33
33
description : |
34
34
A comma-separated PACKAGE=URL#REF list to override sources used by build.
35
35
PACKAGE∊{JAX,XLA,Flax,transformer-engine,T5X,paxml,praxis,maxtext,levanter,haliax,grok,mujuco,mujuco-mpc} (case-insensitive)
36
- default : ' '
36
+ default : " "
37
37
TEST_SUBSET :
38
38
type : string
39
39
options :
49
49
- maxtext
50
50
- grok
51
51
description : Subset of tests to run. Will run all downstream-connected nodes and leaves.
52
- default : ' base'
52
+ default : " base"
53
53
required : false
54
54
55
55
concurrency :
@@ -129,7 +129,7 @@ jobs:
129
129
echo "Error: If BUMP_MANIFEST=false, MERGE_BUMPED_MANIFEST cannot be true" >&2
130
130
exit 1
131
131
fi
132
-
132
+
133
133
- name : Set TESTSET
134
134
id : testset
135
135
shell : bash -x -e {0}
@@ -243,7 +243,7 @@ jobs:
243
243
name : ${{ needs.metadata.outputs.MANIFEST_ARTIFACT_NAME }}
244
244
path : .github/container/
245
245
246
- - name : ' Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}'
246
+ - name : " Create local manifest branch: ${{ needs.metadata.outputs.MANIFEST_BRANCH }}"
247
247
id : local_branch
248
248
shell : bash -x -e {0}
249
249
run : |
@@ -303,7 +303,7 @@ jobs:
303
303
env :
304
304
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
305
305
306
- - name : ' Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}'
306
+ - name : " Log created PR: #${{ fromJson(steps.create_pr.outputs.data).number }}"
307
307
if : steps.create_pr.outcome == 'success'
308
308
run : |
309
309
echo "https://github.com/NVIDIA/JAX-Toolbox/pull/${{ fromJson(steps.create_pr.outputs.data).number }}" | tee -a $GITHUB_STEP_SUMMARY
@@ -439,7 +439,7 @@ jobs:
439
439
440
440
finalize :
441
441
needs : [metadata, amd64, arm64, publish-containers]
442
- if : ' !cancelled()'
442
+ if : " !cancelled()"
443
443
uses : ./.github/workflows/_finalize.yaml
444
444
with :
445
445
BUILD_DATE : ${{ needs.metadata.outputs.BUILD_DATE }}
0 commit comments