Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 70
658: PHP 8.6 (pre-release) support#667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
2e7707c412a0c5b37fbbde9972e7a8538a3f4d2cf3File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -21,6 +21,7 @@ jobs: | ||
| - '8.3' | ||
| - '8.4' | ||
| - '8.5' | ||
| - '8.6' | ||
| steps: | ||
| - name: Setup PHP | ||
| uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 #2.37.2 | ||
| @@ -121,6 +122,7 @@ jobs: | ||
| - '8.3' | ||
| - '8.4' | ||
| - '8.5' | ||
| #- '8.6' # @todo bundled repo doesn't support non-stable PHP versions | ||
asgrim marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| steps: | ||
| - name: "Purge built-in PHP version" | ||
| run: | | ||
| @@ -160,8 +162,15 @@ jobs: | ||
| libzip-dev | ||
| - name: "Set php-src download URL" | ||
| run: | | ||
| DIST_URL=`curl -fsSL "https://www.php.net/releases/index.php?json&max=1&version=${{ matrix.php-versions }}" | jq -r '.[].source[]|select(.filename|endswith(".gz")).filename'` | ||
| echo "php_src_download_url=https://www.php.net/distributions/$DIST_URL" >> $GITHUB_ENV | ||
| if [[ "${{ matrix.php-versions }}" == *-dev ]]; then | ||
| VERSION="${{ matrix.php-versions }}" | ||
| VERSION="${VERSION%-dev}" | ||
| DIST_URL=`curl -fsSL "https://www.php.net/pre-release-builds.php?format=json" | jq -r --arg v "$VERSION" 'to_entries[] | select(.key | startswith($v)) | .value.release.files.gz.path'` | ||
| echo "php_src_download_url=$DIST_URL" >> $GITHUB_ENV | ||
| else | ||
| DIST_URL=`curl -fsSL "https://www.php.net/releases/index.php?json&max=1&version=${{ matrix.php-versions }}" | jq -r '.[].source[]|select(.filename|endswith(".gz")).filename'` | ||
| echo "php_src_download_url=https://www.php.net/distributions/$DIST_URL" >> $GITHUB_ENV | ||
| fi | ||
| - name: "Install PHP ${{ matrix.php-versions }}" | ||
| env: | ||
| php_src_download_url: ${{ env.php_src_download_url }} | ||
| @@ -220,6 +229,7 @@ jobs: | ||
| - '8.3' | ||
| - '8.4' | ||
| - '8.5' | ||
| #- '8.6' @todo behaviour tests depend on stable releases currently | ||
| steps: | ||
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #v7.0.0 | ||
| with: | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -15,4 +15,5 @@ enum WindowsCompiler | ||
| case VC15; | ||
| case VS16; | ||
| case VS17; | ||
| case VS18; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "require": { | ||
| "xdebug/xdebug": "3.5.2", | ||
| "asgrim/example-pie-extension": "2.0.9" | ||
| "asgrim/example-pie-extension": "2.0.10" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| only a test file |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| only a test file |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.