mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Disable resource-heavy tests by default (>1GB of memory usage), unless the RUN_RESOURCE_HEAVY_TESTS env variable is set. Fixes GH-20762 Closes GH-20935
54 lines
1.9 KiB
YAML
54 lines
1.9 KiB
YAML
name: Test
|
|
inputs:
|
|
runTestsParameters:
|
|
default: ''
|
|
required: false
|
|
enableOpcache:
|
|
default: 'false'
|
|
required: false
|
|
jitType:
|
|
default: 'disable'
|
|
required: false
|
|
idleCpu:
|
|
default: 'false'
|
|
required: false
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -x
|
|
export MYSQL_TEST_USER=root
|
|
export MYSQL_TEST_PASSWD=root
|
|
if [[ -z "$PDO_MYSQL_TEST_DSN" ]]; then
|
|
export PDO_MYSQL_TEST_DSN="mysql:host=localhost;dbname=test"
|
|
fi
|
|
export PDO_MYSQL_TEST_USER=root
|
|
export PDO_MYSQL_TEST_PASS=root
|
|
export PDO_DBLIB_TEST_DSN="dblib:host=127.0.0.1;dbname=master;version=7.0"
|
|
export PDO_DBLIB_TEST_USER="pdo_test"
|
|
export PDO_DBLIB_TEST_PASS="password"
|
|
export PHP_OCI8_TEST_USER="system"
|
|
export PHP_OCI8_TEST_PASS="pass"
|
|
export PHP_OCI8_TEST_DB="localhost/XEPDB1"
|
|
export PDO_OCI_TEST_USER="system"
|
|
export PDO_OCI_TEST_PASS="pass"
|
|
export PDO_OCI_TEST_DSN="oci:dbname=localhost/XEPDB1;charset=AL32UTF8"
|
|
export PGSQL_TEST_CONNSTR="host=localhost dbname=test port=5432 user=postgres password=postgres"
|
|
if [[ -z "$PDO_PGSQL_TEST_DSN" ]]; then
|
|
export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres"
|
|
fi
|
|
export SKIP_IO_CAPTURE_TESTS=1
|
|
export RUN_RESOURCE_HEAVY_TESTS=1
|
|
sapi/cli/php run-tests.php -P -q ${{ inputs.runTestsParameters }} \
|
|
${{ inputs.enableOpcache == 'true' && '-d zend_extension=opcache.so -d opcache.enable_cli=1' || '' }} \
|
|
-d opcache.jit=${{ inputs.jitType }} \
|
|
-d opcache.jit_buffer_size=16M \
|
|
${{ inputs.idleCpu == 'true' && '-j$(($(/usr/bin/nproc) - 1))' || '-j$(/usr/bin/nproc)' }} \
|
|
-g FAIL,BORK,LEAK,XLEAK \
|
|
--no-progress \
|
|
--offline \
|
|
--show-diff \
|
|
--show-slow 1000 \
|
|
--set-timeout 120
|