Skip to content

Commit f0befd7

Browse files
committed
Update the test matrix
1 parent 8e44ae0 commit f0befd7

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/qa.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ jobs:
1111
matrix:
1212
operating-system: [ubuntu-latest]
1313
env:
14-
- PHP_IMAGE: php:7.1-cli
15-
- PHP_IMAGE: php:7.2-cli
1614
- PHP_IMAGE: php:7.3-cli
1715

1816
- PHP_IMAGE: php:7.4-cli
@@ -23,6 +21,8 @@ jobs:
2321

2422
- PHP_IMAGE: php:8.1-cli
2523
- PHP_IMAGE: php:8.2-cli
24+
- PHP_IMAGE: php:8.3-cli
25+
- PHP_IMAGE: php:8.4-cli
2626

2727
runs-on: ${{ matrix.operating-system }}
2828
steps:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2023 Eugene Leonovich
3+
Copyright (c) 2015-2025 Eugene Leonovich
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -377,11 +377,11 @@ Also, if you already have Docker installed, you can run the tests in a docker co
377377
./dockerfile.sh | docker build -t msgpack -
378378
```
379379

380-
The command above will create a container named `msgpack` with PHP 8.2 runtime. You may change the default runtime
380+
The command above will create a container named `msgpack` with PHP 8.4 runtime. You may change the default runtime
381381
by defining the `PHP_IMAGE` environment variable:
382382

383383
```sh
384-
PHP_IMAGE='php:8.1-cli' ./dockerfile.sh | docker build -t msgpack -
384+
PHP_IMAGE='php:8.3-cli' ./dockerfile.sh | docker build -t msgpack -
385385
```
386386

387387
> *See a list of various images [here](https://hub.docker.com/_/php).*
@@ -633,13 +633,13 @@ Ignored 0 0
633633
You may change default benchmark settings by defining the following environment
634634
variables:
635635

636-
| Name | Default |
637-
|---------------------|---------------------------------------------------------------------------|
638-
| MP_BENCH_TARGETS | `pure_p,pure_u`, *see a [list](tests/bench.php#L83) of available targets* |
639-
| MP_BENCH_ITERATIONS | `100_000` |
640-
| MP_BENCH_DURATION | *not set* |
641-
| MP_BENCH_ROUNDS | `3` |
642-
| MP_BENCH_TESTS | `-@slow`, *see a [list](tests/DataProvider.php) of available tests* |
636+
| Name | Default |
637+
|---------------------|-----------------------------------------------------------------------------|
638+
| MP_BENCH_TARGETS | `pure_p,pure_u`, *see the [list](tests/bench.php#L83) of available targets* |
639+
| MP_BENCH_ITERATIONS | `100_000` |
640+
| MP_BENCH_DURATION | *not set* |
641+
| MP_BENCH_ROUNDS | `3` |
642+
| MP_BENCH_TESTS | `-@slow`, *see the [list](tests/DataProvider.php) of available tests* |
643643

644644
For example:
645645

dockerfile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
if [[ -z "$PHP_IMAGE" ]]; then
4-
PHP_IMAGE='php:8.2-cli'
4+
PHP_IMAGE='php:8.4-cli'
55
fi
66

77
RUN_CMDS=''

0 commit comments

Comments
 (0)