Skip to content

Commit c7746ae

Browse files
committed
restrict concurrency to 32.
1 parent 43163aa commit c7746ae

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: configure & build
99
run: |
1010
cd lib && ./configure --enable-sm80 && cd ..
11-
make -j 64 -C test COVER=1 all.tests
11+
make -j 32 -C test COVER=1 all.tests
1212
- name: tests
1313
run: |
1414
make -C test check

.github/workflows/cuda-int-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- name: configure & build
99
run: |
1010
cd lib && ./configure --enable-sm80 && cd ..
11-
make -j 64 -C test/int/nnc
11+
make -j 32 -C test/int/nnc
1212
- name: integration tests
1313
run: |
1414
make -C test/int/nnc test

.github/workflows/ubsan-unit-tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
- name: configure & build
99
run: |
1010
cd lib && ./configure --enable-sm80 && cd ..
11-
make -j 64 -C lib ubsan
12-
make -j 64 -C bin ubsan
13-
make -j 64 -C bin/nnc ubsan
14-
make -j 64 -C bin/cuda ubsan
15-
make -j 64 -C test ubsan
11+
make -j 32 -C lib ubsan
12+
make -j 32 -C bin ubsan
13+
make -j 32 -C bin/nnc ubsan
14+
make -j 32 -C bin/cuda ubsan
15+
make -j 32 -C test ubsan
1616
- name: tests
1717
run: |
1818
make -C test test

0 commit comments

Comments
 (0)