We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d427e commit 5fbeecaCopy full SHA for 5fbeeca
.github/workflows/test.yml
@@ -60,6 +60,9 @@ jobs:
60
librdkafka: 'v0.11.6'
61
- php: '7.0.0'
62
63
+ - php: '8.1.0RC6'
64
+ librdkafka: 'master'
65
+ experimental: true
66
- php: '8.0.0'
67
librdkafka: 'master'
68
experimental: true
.github/workflows/test/build-php.sh
@@ -8,8 +8,12 @@ fi
8
9
if ! [ -f ~/build-cache/php/usr/local/bin/php ]; then
10
echo "PHP build is not cached"
11
-
12
- wget https://secure.php.net/distributions/php-${PHP_VERSION}.tar.bz2
+
+ case $PHP_VERSION in
13
+ "8.1"*) wget https://downloads.php.net/~ramsey/php-${PHP_VERSION}.tar.bz2 ;;
14
+ *) wget https://secure.php.net/distributions/php-${PHP_VERSION}.tar.bz2 ;;
15
+ esac
16
17
tar xjf php-${PHP_VERSION}.tar.bz2
18
cd php-${PHP_VERSION}
19
0 commit comments