Skip to content

Commit abd372b

Browse files
authoredMay 16, 2024··
CI: Add PHP 8.3 to the required matrix, add PHP 8.4 to experimental (#557)
1 parent dfd038f commit abd372b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎.github/workflows/build-and-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
10+
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
1111
experimental: [false]
1212
include:
1313
- php: '8.2'
1414
awesome: true
1515
experimental: true
16-
- php: '8.3'
16+
- php: '8.4'
1717
experimental: true
1818
steps:
1919
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
3535
- if: ${{ matrix.awesome }}
3636
name: Install libmemcached-awesome (from source)
3737
run: |
38-
curl -sL -o libmemcached.tgz https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.3.tar.gz
38+
curl -sL -o libmemcached.tgz https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.4.tar.gz
3939
mkdir libmemcached
4040
tar --strip-components=1 -xf libmemcached.tgz -C libmemcached
4141
mkdir build-libmemcached
@@ -83,7 +83,7 @@ jobs:
8383
8484
define ("MEMC_SASL_SERVER_HOST", "127.0.0.1");
8585
define ("MEMC_SASL_SERVER_PORT", 11212);
86-
86+
8787
define ('MEMC_SASL_USER', 'memcached');
8888
define ('MEMC_SASL_PASS', 'test');
8989
EOF

0 commit comments

Comments
 (0)
Please sign in to comment.