mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
Merge branch 'PHP-8.1'
* PHP-8.1: Verify generated files are up to date in CI
This commit is contained in:
@@ -59,10 +59,10 @@ runs:
|
||||
libpng-dev \
|
||||
libfreetype6-dev
|
||||
mkdir /opt/oracle
|
||||
wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
|
||||
unzip instantclient-basiclite-linuxx64.zip
|
||||
wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
|
||||
unzip instantclient-sdk-linuxx64.zip
|
||||
wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
|
||||
unzip instantclient-basiclite-linuxx64.zip && rm instantclient-basiclite-linuxx64.zip
|
||||
wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
|
||||
unzip instantclient-sdk-linuxx64.zip && rm instantclient-sdk-linuxx64.zip
|
||||
mv instantclient_*_* /opt/oracle/instantclient
|
||||
# Interferes with libldap2 headers.
|
||||
rm /opt/oracle/instantclient/sdk/include/ldap.h
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
name: Verify generated files are up to date
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- shell: bash
|
||||
run: |
|
||||
set -x
|
||||
[[ "$OSTYPE" == "darwin"* ]] && export PATH="/usr/local/opt/bison/bin:$PATH"
|
||||
scripts/dev/genfiles
|
||||
Zend/zend_vm_gen.php
|
||||
build/gen_stub.php -f
|
||||
git add . -N && git diff --exit-code
|
||||
@@ -93,6 +93,8 @@ jobs:
|
||||
-d opcache.enable_cli=1
|
||||
-d opcache.jit_buffer_size=16M
|
||||
-d opcache.jit=1205
|
||||
- name: Verify generated files are up to date
|
||||
uses: ./.github/actions/verify-generated-files
|
||||
MACOS:
|
||||
needs: GENERATE_MATRIX
|
||||
if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
||||
@@ -149,3 +151,5 @@ jobs:
|
||||
-d opcache.protect_memory=1
|
||||
-d opcache.jit_buffer_size=16M
|
||||
-d opcache.jit=1205
|
||||
- name: Verify generated files are up to date
|
||||
uses: ./.github/actions/verify-generated-files
|
||||
|
||||
@@ -57,6 +57,8 @@ jobs:
|
||||
-d zend_extension=opcache.so
|
||||
-d opcache.enable_cli=1
|
||||
-d opcache.jit_buffer_size=16M
|
||||
- name: Verify generated files are up to date
|
||||
uses: ./.github/actions/verify-generated-files
|
||||
MACOS_DEBUG_NTS:
|
||||
runs-on: macos-10.15
|
||||
steps:
|
||||
@@ -84,3 +86,5 @@ jobs:
|
||||
-d opcache.enable_cli=1
|
||||
-d opcache.protect_memory=1
|
||||
-d opcache.jit_buffer_size=16M
|
||||
- name: Verify generated files are up to date
|
||||
uses: ./.github/actions/verify-generated-files
|
||||
|
||||
@@ -21,6 +21,10 @@ pg_close($dbh);
|
||||
require_once(__DIR__.'/../../dba/tests/test.inc');
|
||||
require_once(__DIR__.'/../../dba/tests/dba_handler.inc');
|
||||
|
||||
?>
|
||||
--CLEAN--
|
||||
<?php
|
||||
require_once(__DIR__.'/../../dba/tests/clean.inc');
|
||||
?>
|
||||
--EXPECTF--
|
||||
database handler: %s
|
||||
|
||||
Reference in New Issue
Block a user