mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
11 lines
320 B
Bash
11 lines
320 B
Bash
set -e
|
|
|
|
docker build -t pm2-test -f test/Dockerfile .
|
|
|
|
JOBS=2
|
|
OPTS="--jobs $JOBS --joblog joblog-X docker run -v `pwd`:/var/pm2 pm2-test"
|
|
|
|
ls test/e2e/cli/* | parallel $OPTS bash
|
|
|
|
#ls test/e2e/binaries/* test/e2e/modules/* test/e2e/internal/* test/e2e/process-file/* test/e2e/cli/* test/e2e/logs/* | parallel $OPTS bash
|