Skip to content

Commit fec1f4a

Browse files
authored
Fluffy: Remove -j${ncpu} when running fluffy-test (#3187)
1 parent 020bc51 commit fec1f4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/fluffy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ jobs:
277277
rm -rf nimcache
278278
mingw32-make ${DEFAULT_MAKE_FLAGS} fluffy-tools
279279
rm -rf nimcache
280-
mingw32-make ${DEFAULT_MAKE_FLAGS} fluffy-test
280+
mingw32-make fluffy-test
281281
rm -rf nimcache
282282
283283
- name: Run fluffy tests (Linux)
@@ -292,7 +292,7 @@ jobs:
292292
build/fluffy --help
293293
env CC=gcc make ${DEFAULT_MAKE_FLAGS} fluffy-tools
294294
# CC is needed to select correct compiler 32/64 bit
295-
env CC=gcc CXX=g++ make ${DEFAULT_MAKE_FLAGS} fluffy-test
295+
env CC=gcc CXX=g++ make fluffy-test
296296
297297
- name: Run fluffy tests (Macos)
298298
if: runner.os == 'Macos'
@@ -302,7 +302,7 @@ jobs:
302302
build/fluffy --help
303303
make ${DEFAULT_MAKE_FLAGS} fluffy-tools
304304
# "-static" option will not work for osx unless static system libraries are provided
305-
make ${DEFAULT_MAKE_FLAGS} fluffy-test
305+
make fluffy-test
306306
307307
- name: Run fluffy testnet
308308
run: |

0 commit comments

Comments
 (0)