@@ -24,23 +24,24 @@ jobs:
24
24
uses : actions/setup-node@v4
25
25
with :
26
26
node-version : 16
27
- - name : Setup Bikeshed
28
- run : pip install bikeshed && bikeshed update
27
+ # - name: Setup Bikeshed
28
+ # run: pip install bikeshed && bikeshed update
29
29
- name : Setup TexLive
30
30
run : sudo apt-get update -y && sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
31
31
- name : Setup Sphinx
32
32
run : pip install six && pip install sphinx==5.1.0
33
33
- name : Build main spec
34
34
run : cd document/core && make main
35
- - name : Run Bikeshed
36
- run : cd document/core && make bikeshed
35
+ # - name: Run Bikeshed
36
+ # run: cd document/core && make bikeshed
37
37
- name : Upload artifact
38
38
uses : actions/upload-artifact@v4
39
39
with :
40
40
name : core-rendered
41
41
path : document/core/_build/html
42
42
43
43
build-js-api-spec :
44
+ if : false
44
45
runs-on : ubuntu-latest
45
46
steps :
46
47
- name : Checkout repo
56
57
path : document/js-api/index.html
57
58
58
59
build-web-api-spec :
60
+ if : false
59
61
runs-on : ubuntu-latest
60
62
steps :
61
63
- name : Checkout repo
71
73
path : document/web-api/index.html
72
74
73
75
build-code-metadata-spec :
76
+ if : false
74
77
runs-on : ubuntu-latest
75
78
needs : [build-core-spec]
76
79
steps :
91
94
path : document/metadata/code/_build/html
92
95
93
96
build-legacy-exceptions-core-spec :
97
+ if : false
94
98
runs-on : ubuntu-latest
95
99
steps :
96
100
- name : Checkout repo
@@ -110,6 +114,7 @@ jobs:
110
114
path : document/legacy/exceptions/core/_build/html
111
115
112
116
build-legacy-exceptions-js-api-spec :
117
+ if : false
113
118
runs-on : ubuntu-latest
114
119
steps :
115
120
- name : Checkout repo
@@ -125,6 +130,7 @@ jobs:
125
130
path : document/legacy/exceptions/js-api/index.html
126
131
127
132
build-spec-versions :
133
+ if : false
128
134
runs-on : ubuntu-latest
129
135
steps :
130
136
- name : Checkout repo
@@ -136,6 +142,7 @@ jobs:
136
142
path : document/versions/
137
143
138
144
publish-spec :
145
+ if : false
139
146
runs-on : ubuntu-latest
140
147
needs :
141
148
- build-core-spec
0 commit comments