@@ -126,13 +126,13 @@ jobs:
126126 python3 --version
127127 msgfmt --version
128128 - name : Build mpy-cross
129- run : make -C mpy-cross -j2
129+ run : make -C mpy-cross -j4
130130 - uses : actions/upload-artifact@v4
131131 with :
132132 name : mpy-cross-macos-11-x64
133133 path : mpy-cross/build/mpy-cross
134134 - 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
136136 - uses : actions/upload-artifact@v4
137137 with :
138138 name : mpy-cross-macos-11-arm64
@@ -182,7 +182,7 @@ jobs:
182182 sudo apt-get install -y latexmk librsvg2-bin texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
183183 pip install -r requirements-doc.txt
184184 - name : Build and Validate Stubs
185- run : make check-stubs -j2
185+ run : make check-stubs -j4
186186 - uses : actions/upload-artifact@v4
187187 with :
188188 name : stubs
@@ -191,14 +191,14 @@ jobs:
191191 run : sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
192192 - uses : actions/upload-artifact@v4
193193 with :
194- name : docs
194+ name : docs-html
195195 path : _build/html
196196 - name : Test Documentation Build (LaTeX/PDF)
197197 run : |
198198 make latexpdf
199199 - uses : actions/upload-artifact@v4
200200 with :
201- name : docs
201+ name : docs-latexpdf
202202 path : _build/latex
203203 - name : Upload to S3
204204 uses : ./.github/actions/upload_aws
@@ -271,17 +271,17 @@ jobs:
271271 - name : Set up submodules
272272 uses : ./.github/actions/deps/submodules
273273 - name : build mpy-cross
274- run : make -j2 -C mpy-cross
274+ run : make -j4 -C mpy-cross
275275 - 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
277277 - 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
279279 - 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
281281 - 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
283283 - 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
285285 # I gave up trying to do esp builds on windows when I saw
286286 # ERROR: Platform MINGW64_NT-10.0-17763-x86_64 appears to be unsupported
287287 # https://github.com/espressif/esp-idf/issues/7062
0 commit comments