File tree 5 files changed +28
-4
lines changed 5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ runs:
59
59
libpng-dev \
60
60
libfreetype6-dev
61
61
mkdir /opt/oracle
62
- wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
63
- unzip instantclient-basiclite-linuxx64.zip
64
- wget https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
65
- unzip instantclient-sdk-linuxx64.zip
62
+ wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip
63
+ unzip instantclient-basiclite-linuxx64.zip && rm instantclient-basiclite-linuxx64.zip
64
+ wget -nv https://download.oracle.com/otn_software/linux/instantclient/instantclient-sdk-linuxx64.zip
65
+ unzip instantclient-sdk-linuxx64.zip && rm instantclient-sdk-linuxx64.zip
66
66
mv instantclient_*_* /opt/oracle/instantclient
67
67
# Interferes with libldap2 headers.
68
68
rm /opt/oracle/instantclient/sdk/include/ldap.h
Original file line number Diff line number Diff line change
1
+ name : Verify generated files are up to date
2
+ runs :
3
+ using : composite
4
+ steps :
5
+ - shell : bash
6
+ run : |
7
+ set -x
8
+ [[ "$OSTYPE" == "darwin"* ]] && export PATH="/usr/local/opt/bison/bin:$PATH"
9
+ scripts/dev/genfiles
10
+ Zend/zend_vm_gen.php
11
+ build/gen_stub.php -f
12
+ git add . -N && git diff --exit-code
Original file line number Diff line number Diff line change 93
93
-d opcache.enable_cli=1
94
94
-d opcache.jit_buffer_size=16M
95
95
-d opcache.jit=1205
96
+ - name : Verify generated files are up to date
97
+ uses : ./.github/actions/verify-generated-files
96
98
MACOS :
97
99
needs : GENERATE_MATRIX
98
100
if : ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
@@ -149,3 +151,5 @@ jobs:
149
151
-d opcache.protect_memory=1
150
152
-d opcache.jit_buffer_size=16M
151
153
-d opcache.jit=1205
154
+ - name : Verify generated files are up to date
155
+ uses : ./.github/actions/verify-generated-files
Original file line number Diff line number Diff line change 57
57
-d zend_extension=opcache.so
58
58
-d opcache.enable_cli=1
59
59
-d opcache.jit_buffer_size=16M
60
+ - name : Verify generated files are up to date
61
+ uses : ./.github/actions/verify-generated-files
60
62
MACOS_DEBUG_NTS :
61
63
runs-on : macos-10.15
62
64
steps :
84
86
-d opcache.enable_cli=1
85
87
-d opcache.protect_memory=1
86
88
-d opcache.jit_buffer_size=16M
89
+ - name : Verify generated files are up to date
90
+ uses : ./.github/actions/verify-generated-files
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ pg_close($dbh);
21
21
require_once (__DIR__ .'/../../dba/tests/test.inc ' );
22
22
require_once (__DIR__ .'/../../dba/tests/dba_handler.inc ' );
23
23
24
+ ?>
25
+ --CLEAN--
26
+ <?php
27
+ require_once (__DIR__ .'/../../dba/tests/clean.inc ' );
24
28
?>
25
29
--EXPECTF--
26
30
database handler: %s
You can’t perform that action at this time.
0 commit comments