We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bced86b commit 3f052b6Copy full SHA for 3f052b6
2 files changed
bin/test-releases
@@ -2,9 +2,7 @@
2
set -euo pipefail
3
4
# Test releases against the oldest and newest supported PHP versions
5
-for php in php84 php81; do
6
- for pluginPkg in plugin pluginWpOrg; do
7
- echo "Testing $pluginPkg with $php"
8
- PHP_PACKAGE="$php" STATIC_DEPLOY_PACKAGE="$pluginPkg" nix flake check --impure ./dev
9
- done
10
-done
+parallel --tagstring "{1} {2}" --line-buffer '
+ echo "Testing {2} with {1}"
+ PHP_PACKAGE="{1}" STATIC_DEPLOY_PACKAGE="{2}" nix flake check --impure ./dev
+' ::: php84 php81 ::: plugin pluginWpOrg
dev/flake.nix
@@ -414,6 +414,7 @@
414
jq
415
inputs.microvm.packages.${system}.microvm
416
omnix
417
+ parallel
418
php
419
phpunit
420
phpPackages.composer
0 commit comments