@@ -126,13 +126,13 @@ jobs:
126
126
python3 --version
127
127
msgfmt --version
128
128
- name : Build mpy-cross
129
- run : make -C mpy-cross -j2
129
+ run : make -C mpy-cross -j4
130
130
- uses : actions/upload-artifact@v4
131
131
with :
132
132
name : mpy-cross-macos-11-x64
133
133
path : mpy-cross/build/mpy-cross
134
134
- name : Build mpy-cross (arm64)
135
- run : make -C mpy-cross -j2 -f Makefile.m1 V=2
135
+ run : make -C mpy-cross -j4 -f Makefile.m1 V=2
136
136
- uses : actions/upload-artifact@v4
137
137
with :
138
138
name : mpy-cross-macos-11-arm64
@@ -182,7 +182,7 @@ jobs:
182
182
sudo apt-get install -y latexmk librsvg2-bin texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
183
183
pip install -r requirements-doc.txt
184
184
- name : Build and Validate Stubs
185
- run : make check-stubs -j2
185
+ run : make check-stubs -j4
186
186
- uses : actions/upload-artifact@v4
187
187
with :
188
188
name : stubs
@@ -191,14 +191,14 @@ jobs:
191
191
run : sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
192
192
- uses : actions/upload-artifact@v4
193
193
with :
194
- name : docs
194
+ name : docs-html
195
195
path : _build/html
196
196
- name : Test Documentation Build (LaTeX/PDF)
197
197
run : |
198
198
make latexpdf
199
199
- uses : actions/upload-artifact@v4
200
200
with :
201
- name : docs
201
+ name : docs-latexpdf
202
202
path : _build/latex
203
203
- name : Upload to S3
204
204
uses : ./.github/actions/upload_aws
@@ -271,17 +271,17 @@ jobs:
271
271
- name : Set up submodules
272
272
uses : ./.github/actions/deps/submodules
273
273
- name : build mpy-cross
274
- run : make -j2 -C mpy-cross
274
+ run : make -j4 -C mpy-cross
275
275
- name : build rp2040
276
- run : make -j2 -C ports/raspberrypi BOARD=adafruit_feather_rp2040 TRANSLATION=de_DE
276
+ run : make -j4 -C ports/raspberrypi BOARD=adafruit_feather_rp2040 TRANSLATION=de_DE
277
277
- name : build samd21
278
- run : make -j2 -C ports/atmel-samd BOARD=feather_m0_express TRANSLATION=zh_Latn_pinyin
278
+ run : make -j4 -C ports/atmel-samd BOARD=feather_m0_express TRANSLATION=zh_Latn_pinyin
279
279
- name : build samd51
280
- run : make -j2 -C ports/atmel-samd BOARD=feather_m4_express TRANSLATION=es
280
+ run : make -j4 -C ports/atmel-samd BOARD=feather_m4_express TRANSLATION=es
281
281
- name : build nrf
282
- run : make -j2 -C ports/nrf BOARD=feather_nrf52840_express TRANSLATION=fr
282
+ run : make -j4 -C ports/nrf BOARD=feather_nrf52840_express TRANSLATION=fr
283
283
- name : build stm
284
- run : make -j2 -C ports/stm BOARD=feather_stm32f405_express TRANSLATION=pt_BR
284
+ run : make -j4 -C ports/stm BOARD=feather_stm32f405_express TRANSLATION=pt_BR
285
285
# I gave up trying to do esp builds on windows when I saw
286
286
# ERROR: Platform MINGW64_NT-10.0-17763-x86_64 appears to be unsupported
287
287
# https://github.com/espressif/esp-idf/issues/7062
0 commit comments