Skip to content

Commit

Permalink
CI: Add PHP 8.3 to the required matrix, add PHP 8.4 to experimental (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
blkperl committed May 16, 2024
1 parent dfd038f commit abd372b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
experimental: [false]
include:
- php: '8.2'
awesome: true
experimental: true
- php: '8.3'
- php: '8.4'
experimental: true
steps:
- name: Checkout
Expand All @@ -35,7 +35,7 @@ jobs:
- if: ${{ matrix.awesome }}
name: Install libmemcached-awesome (from source)
run: |
curl -sL -o libmemcached.tgz https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.3.tar.gz
curl -sL -o libmemcached.tgz https://github.com/awesomized/libmemcached/archive/refs/tags/1.1.4.tar.gz
mkdir libmemcached
tar --strip-components=1 -xf libmemcached.tgz -C libmemcached
mkdir build-libmemcached
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
define ("MEMC_SASL_SERVER_HOST", "127.0.0.1");
define ("MEMC_SASL_SERVER_PORT", 11212);
define ('MEMC_SASL_USER', 'memcached');
define ('MEMC_SASL_PASS', 'test');
EOF
Expand Down

0 comments on commit abd372b

Please sign in to comment.