File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333
3434 - name : Build all checks and outputs
3535 run : |
36- bin/test-releases
37- bin/test-php-versions
36+ bin/test-releases 2
37+ bin/test-php-versions 2
3838 nix develop ./dev -c om ci
3939 cd dev
4040 nix develop -c om ci
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -euo pipefail
33
4- parallel -j " $( nproc) " --tagstring " {1}" --line-buffer '
4+ parallel -j " ${1 :- $ (nproc)} " --tagstring " {1}" --line-buffer '
55 echo "Testing {1}"
66 PHP_PACKAGE="{1}" nix flake check --impure ./dev
77' ::: php84 php83 php82 php81
Original file line number Diff line number Diff line change 22set -euo pipefail
33
44# Test releases against the oldest and newest supported PHP versions
5- parallel -j " $( nproc) " --tagstring " {1} {2}" --line-buffer '
5+ parallel -j " ${1 :- $ (nproc)} " --tagstring " {1} {2}" --line-buffer '
66 echo "Testing {2} with {1}"
77 PHP_PACKAGE="{1}" STATIC_DEPLOY_PACKAGE="{2}" nix flake check --impure ./dev
88' ::: php84 php81 ::: plugin pluginWpOrg
You can’t perform that action at this time.
0 commit comments