Skip to content

Commit 74789ff

Browse files
committed
ci: increase parallel count for pytest_build_examples for esp32s2, esp32s3 and esp32c3
1 parent 9e5a97c commit 74789ff

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.gitlab/ci/build.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,17 @@ build_pytest_examples_esp32s2:
4949
extends:
5050
- .build_pytest_template
5151
- .rules:build:example_test-esp32s2
52+
parallel: 2
5253
script:
53-
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32s2 --size-info $SIZE_INFO_LOCATION -vv
54+
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32s2 --size-info $SIZE_INFO_LOCATION -vv --parallel-count $CI_NODE_TOTAL --parallel-index $CI_NODE_INDEX
5455

5556
build_pytest_examples_esp32s3:
5657
extends:
5758
- .build_pytest_template
5859
- .rules:build:example_test-esp32s3
60+
parallel: 2
5961
script:
60-
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32s3 --size-info $SIZE_INFO_LOCATION -vv
62+
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32s3 --size-info $SIZE_INFO_LOCATION -vv --parallel-count $CI_NODE_TOTAL --parallel-index $CI_NODE_INDEX
6163

6264
build_pytest_examples_esp32c2:
6365
extends:
@@ -70,8 +72,9 @@ build_pytest_examples_esp32c3:
7072
extends:
7173
- .build_pytest_template
7274
- .rules:build:example_test-esp32c3
75+
parallel: 2
7376
script:
74-
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32c3 --size-info $SIZE_INFO_LOCATION -vv
77+
- run_cmd python tools/ci/build_pytest_apps.py examples --target esp32c3 --size-info $SIZE_INFO_LOCATION -vv --parallel-count $CI_NODE_TOTAL --parallel-index $CI_NODE_INDEX
7578

7679
build_pytest_components_esp32:
7780
extends:

0 commit comments

Comments
 (0)