Skip to content

Commit b15700a

Browse files
author
Greg Bowler
committed
Merge branch '17-php-versions'
2 parents 3a59516 + 63bee1f commit b15700a

File tree

6 files changed

+82
-26
lines changed

6 files changed

+82
-26
lines changed

.github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# These are supported funding model platforms
2+
github: [g105b]

Dockerfile

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
FROM composer:1.10
1+
FROM ghcr.io/php-actions/php-build:v1
22

33
LABEL version="1.0.0"
44
LABEL repository="https://github.com/php-actions/phpunit"
55
LABEL homepage="https://github.com/php-actions/phpunit"
66
LABEL maintainer="Greg Bowler <[email protected]>"
77

8-
RUN composer global require --no-progress phpunit/phpunit 9.*
8+
RUN curl https://phar.phpunit.de/phpunit-9.4.2.phar > phpunit-9.phar
9+
RUN curl https://phar.phpunit.de/phpunit-8.5.8.phar > phpunit-8.phar
10+
RUN curl https://phar.phpunit.de/phpunit-7.5.9.phar > phpunit-7.phar
11+
RUN curl https://phar.phpunit.de/phpunit-6.5.9.phar > phpunit-6.phar
12+
RUN chmod +x *.phar
13+
RUN ln -s $(pwd)/phpunit-9.phar /usr/local/bin/phpunit-9
14+
RUN ln -s $(pwd)/phpunit-8.phar /usr/local/bin/phpunit-8
15+
RUN ln -s $(pwd)/phpunit-7.phar /usr/local/bin/phpunit-7
16+
RUN ln -s $(pwd)/phpunit-6.phar /usr/local/bin/phpunit-6
17+
RUN ln -s /usr/local/bin/phpunit-9 /usr/local/bin/phpunit
18+
COPY switch-phpunit-version /usr/local/bin/.
919
COPY entrypoint /usr/local/bin/entrypoint
1020
ENTRYPOINT ["/usr/local/bin/entrypoint"]

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v2
2626
- uses: php-actions/composer@v1 # or alternative dependency management
27-
- uses: php-actions/phpunit@v9
27+
- uses: php-actions/phpunit@v1
2828
# ... then your own project steps ...
2929
```
3030

@@ -42,6 +42,8 @@ The following configuration options are available:
4242
+ `junit` Path to junit output file (default: `test/phpunit/_junit/junit.xml`)
4343
+ `memory` The memory limit to run your tests with (default: `512M`)
4444
+ `bootstrap` The path to the bootstrap file (default: `vendor/autoload.php`)
45+
+ `php_version` The version of PHP to use e.g. `7.4` (default: latest)
46+
+ `phpunit_version` The version of PHPUnit to use e.g. `9` or `9.4.2` (default: latest)
4547

4648
The syntax for passing in a custom input is the following:
4749

@@ -54,7 +56,7 @@ jobs:
5456
...
5557

5658
- name: PHPUnit tests
57-
uses: php-actions/phpunit@v9
59+
uses: php-actions/phpunit@v1
5860
with:
5961
configuration: custom/path/to/phpunit.xml
6062
memory_limit: 256M
@@ -65,16 +67,13 @@ If you require other configurations of phpunit, please request them in the [Gith
6567
Versions
6668
--------
6769
68-
The Github Actions version numbers are in sync with the PHPUnit version. This allows you to specify which version of PHPUnit your project should run by using the @ syntax.
70+
Previously, the Github Actions release version numbers were in sync with the PHPUnit version, but this imposed too many limitations. For the next 12 months, v7, v8 and v9 branches will still point to their existing commits, but we have reverted to v1-based Actions releases, allowing PHPUnit version number to be specified from your configuration, using the `phpunit_version` input variable.
6971

70-
Current versions supported by this Action:
72+
Any PHPUnit version available from https://phar.phpunit.de/ are supported.
7173

72-
+ 9.*
73-
+ 8.*
74+
Please note the version number specified within your Action configuration must match your composer.json major version number. For example, if your composer.json requires `phpunit/phpunit 8.5.8`, you must use `phpunit_version: 8.5.8`, as major versions of PHPUnit are incompatible with each other.
7475

75-
Please note **the version number of the Github Action must match your composer.json major version number**. For example, if your composer.json requires `phpunit/phpunit 8.5.8`, you must use `php-actions/phpunit@v8`, as major versions of PHPUnit are incompatible with each other.
76-
77-
If you require a specific version that is not listed here, please request them in the [Github issue tracker](https://github.com/php-actions/phpunit/issues)
76+
If you require a specific version that is not compatible with Github Actions for some reason, please make a request in the [Github issue tracker](https://github.com/php-actions/phpunit/issues).
7877

7978
If you found this repository helpful, please consider [sponsoring the developer][sponsor].
8079

action.yml

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ name: PHPUnit (php-actions)
22
description: Run your PHPUnit tests in your Github Actions.
33

44
inputs:
5+
php_version:
6+
description: What version of PHP to use
7+
default: latest
8+
required: false
9+
10+
phpunit_version:
11+
description: What version of PHPUnit to use
12+
default: latest
13+
required: false
14+
515
configuration:
616
description: Configuration file location
717
required: false
@@ -67,6 +77,8 @@ runs:
6777
using: 'docker'
6878
image: 'Dockerfile'
6979
env:
80+
action_php_version: ${{ inputs.php_version }}
81+
action_phpunit_version: ${{ inputs.phpunit_version }}
7082
action_configuration: ${{ inputs.configuration }}
7183
action_log_junit: ${{ inputs.log_junit }}
7284
action_testdox_html: ${{ inputs.testdox_html }}

entrypoint

+27-15
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,89 @@
22
set -e
33
PATH=/tmp/vendor/bin:$PATH
44

5+
if [ -n "$action_php_version" ]
6+
then
7+
echo "Using PHP version: $action_php_version"
8+
switch-php-version $action_php_version
9+
fi
10+
11+
if [ -n "$action_phpunit_version" ]
12+
then
13+
echo "Using PHPUnit version: $action_phpunit_version"
14+
switch-phpunit-version $action_phpunit_version
15+
fi
16+
517
command_string="phpunit"
618

719
if [ -n "$action_configuration" ]
820
then
9-
command_string="$command_string --configuration '$action_configuration'"
21+
command_string="$command_string --configuration '$action_configuration'"
1022
fi
1123

1224
if [ -n "$action_log_junit" ]
1325
then
14-
command_string="$command_string --log-junit '$action_log_junit'"
26+
command_string="$command_string --log-junit '$action_log_junit'"
1527
fi
1628

1729
if [ -n "$action_testdox_html" ]
1830
then
19-
command_string="$command_string --testdox-html '$action_testdox_html'"
31+
command_string="$command_string --testdox-html '$action_testdox_html'"
2032
fi
2133

2234
if [ -n "$action_testdox_text" ]
2335
then
24-
command_string="$command_string --testdox-text '$action_testdox_text'"
36+
command_string="$command_string --testdox-text '$action_testdox_text'"
2537
fi
2638

2739
if [ -n "$action_testdox_xml" ]
2840
then
29-
command_string="$command_string --testdox-xml '$action_testdox_xml'"
41+
command_string="$command_string --testdox-xml '$action_testdox_xml'"
3042
fi
3143

3244
if [ -n "$action_bootstrap" ]
3345
then
34-
command_string="$command_string --bootstrap '$action_bootstrap'"
46+
command_string="$command_string --bootstrap '$action_bootstrap'"
3547
fi
3648

3749
if [ -n "$action_filter" ]
3850
then
39-
command_string="$command_string --filter '$action_filter'"
51+
command_string="$command_string --filter '$action_filter'"
4052
fi
4153

4254
if [ -n "$action_testsuite" ]
4355
then
44-
command_string="$command_string --testsuite '$action_testsuite'"
56+
command_string="$command_string --testsuite '$action_testsuite'"
4557
fi
4658

4759
if [ -n "$action_group" ]
4860
then
49-
command_string="$command_string --group '$action_group'"
61+
command_string="$command_string --group '$action_group'"
5062
fi
5163

5264
if [ -n "$action_exclude_group" ]
5365
then
54-
command_string="$command_string --exclude-group '$action_exclude_group'"
66+
command_string="$command_string --exclude-group '$action_exclude_group'"
5567
fi
5668

5769
if [ -n "$action_test_suffix" ]
5870
then
59-
command_string="$command_string --test-suffix '$action_test_suffix'"
71+
command_string="$command_string --test-suffix '$action_test_suffix'"
6072
fi
6173

6274
if [ -n "$action_whitelist" ]
6375
then
64-
command_string="$command_string --whitelist '$action_whitelist'"
76+
command_string="$command_string --whitelist '$action_whitelist'"
6577
fi
6678

6779
if [ -n "$action_memory_limit" ]
6880
then
69-
command_string="$command_string -d memory_limit=$action_memory_limit"
81+
command_string="$command_string -d memory_limit=$action_memory_limit"
7082
fi
7183

7284
if [ -n "$action_args" ]
7385
then
74-
command_string="$command_string $action_args"
86+
command_string="$command_string $action_args"
7587
fi
7688

7789
echo "Command: $command_string"
78-
eval "$command_string"
90+
eval "$command_string"

switch-phpunit-version

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
set -e
3+
4+
if [ "$1" = "latest" ]
5+
then
6+
version=9
7+
else
8+
version=$1
9+
fi
10+
11+
phpunit_bin="/usr/local/bin/phpunit-$version"
12+
13+
if test -f $phpunit_bin
14+
then
15+
rm -f /usr/local/bin/phpunit
16+
ln -s "$phpunit_bin" "/usr/local/bin/phpunit"
17+
echo "Successfully linked $phpunit_bin"
18+
else
19+
echo "Error linking $phpunit_bin: version doesn't exit"
20+
exit 1
21+
fi

0 commit comments

Comments
 (0)