Skip to content

Commit ddccbb6

Browse files
esyrSashan
authored andcommitted
.github/workflows/test.yml: limit ossl building parallelism
"make -j" enables to unlimited concurrency during execution of the openssl build step, which sometimes leads to failures due to resource exhaustion. Try to avoid that by limiting the number of concurrently executed jobs to 4, similarly to the way it is done elsewhere in the workflow steps (including building openssl on FreeBSD). Signed-off-by: Eugene Syromiatnikov <[email protected]>
1 parent 2074172 commit ddccbb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: "Build openssl"
6969
working-directory: "./openssl"
7070
run: |
71-
make -j
71+
make -j 4
7272
- name: "Install openssl"
7373
working-directory: "./openssl"
7474
run: |
@@ -169,7 +169,7 @@ jobs:
169169
- name: "Build openssl"
170170
working-directory: "./openssl"
171171
run: |
172-
make -j
172+
make -j 4
173173
- name: "Install openssl"
174174
working-directory: "./openssl"
175175
run: |
@@ -508,7 +508,7 @@ jobs:
508508
- name: "Build openssl"
509509
working-directory: "./openssl"
510510
run: |
511-
make -j
511+
make -j 4
512512
- name: "Install openssl"
513513
working-directory: "./openssl"
514514
run: |

0 commit comments

Comments
 (0)