mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
35 lines
1.2 KiB
Bash
35 lines
1.2 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
function get_seeded_random() {
|
||
|
openssl enc -aes-256-ctr -pass pass:"vimeo/psalm" -nosalt </dev/zero 2>/dev/null
|
||
|
}
|
||
|
|
||
|
function run {
|
||
|
local -r chunk_count="$1"
|
||
|
local -r chunk_number="$2"
|
||
|
local -r parallel_processes="$3"
|
||
|
|
||
|
local -r phpunit_cmd='
|
||
|
echo "::group::{}";
|
||
|
vendor/bin/phpunit --log-junit build/phpunit/logs/{_}.xml --colors=always {};
|
||
|
exit_code=$?;
|
||
|
echo ::endgroup::;
|
||
|
if [[ "$exit_code" -ne 0 ]]; then
|
||
|
echo "::error::{}";
|
||
|
fi;
|
||
|
exit "$exit_code"'
|
||
|
|
||
|
mkdir -p build/parallel/ build/phpunit/logs/
|
||
|
|
||
|
find tests -name '*Test.php' | shuf --random-source=<(get_seeded_random) > build/tests_all
|
||
|
split --number="l/$chunk_number/$chunk_count" build/tests_all > build/tests_split
|
||
|
parallel --group -j"$parallel_processes" --rpl {_}\ s/\\//_/g --joblog build/parallel/jobs.log "$phpunit_cmd" < build/tests_split
|
||
|
}
|
||
|
|
||
|
if [ -z "${CHUNK_COUNT:-}" ]; then echo "Did not find env var CHUNK_COUNT."; exit 1; fi
|
||
|
if [ -z "${CHUNK_NUMBER:-}" ]; then echo "Did not find env var CHUNK_NUMBER."; exit 1; fi
|
||
|
if [ -z "${PARALLEL_PROCESSES:-}" ]; then echo "Did not find env var PARALLEL_PROCESSES."; exit 1; fi
|
||
|
|
||
|
run "$CHUNK_COUNT" "$CHUNK_NUMBER" "$PARALLEL_PROCESSES"
|