Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
It's the official pre-release location.

See https://www.php.net/archive/2021.php#2021-10-28-2
  • Loading branch information
ruudk authored Nov 15, 2021
1 parent f8d427e commit 5fbeeca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
librdkafka: 'v0.11.6'
- php: '7.0.0'
librdkafka: 'v0.11.6'
- php: '8.1.0RC6'
librdkafka: 'master'
experimental: true
- php: '8.0.0'
librdkafka: 'master'
experimental: true
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test/build-php.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ fi

if ! [ -f ~/build-cache/php/usr/local/bin/php ]; then
echo "PHP build is not cached"

wget https://secure.php.net/distributions/php-${PHP_VERSION}.tar.bz2

case $PHP_VERSION in
"8.1"*) wget https://downloads.php.net/~ramsey/php-${PHP_VERSION}.tar.bz2 ;;
*) wget https://secure.php.net/distributions/php-${PHP_VERSION}.tar.bz2 ;;
esac

tar xjf php-${PHP_VERSION}.tar.bz2
cd php-${PHP_VERSION}

Expand Down

0 comments on commit 5fbeeca

Please sign in to comment.