Skip to content

Commit b85e109

Browse files
committed
Testing
1 parent 3c9e3af commit b85e109

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/actions/apt-x64/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ runs:
66
run: |
77
set -x
88
9+
echo "deb http://ddebs.ubuntu.com $(lsb_release -cs) main restricted universe multiverse
10+
deb http://ddebs.ubuntu.com $(lsb_release -cs)-updates main restricted universe multiverse
11+
deb http://ddebs.ubuntu.com $(lsb_release -cs)-proposed main restricted universe multiverse" | \
12+
sudo tee -a /etc/apt/sources.list.d/ddebs.list
13+
sudo apt-get install ubuntu-dbgsym-keyring
14+
915
sudo apt-get update
1016
sudo apt-get install \
1117
bison \
@@ -45,8 +51,6 @@ runs:
4551
snmp-mibs-downloader \
4652
freetds-dev \
4753
unixodbc-dev \
48-
llvm \
49-
clang \
5054
libc-client-dev \
5155
dovecot-core \
5256
dovecot-pop3d \

.github/actions/configure-x64/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,4 @@ runs:
8383
--with-config-file-scan-dir=/etc/php.d \
8484
${{ inputs.skipSlow == 'false' && '--with-pdo-firebird' || '' }} \
8585
${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \
86-
--enable-werror \
8786
${{ inputs.configurationParameters }}

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ jobs:
6666
uses: ./.github/actions/setup-caddy
6767
- name: apt
6868
uses: ./.github/actions/apt-x64
69+
- name: Install LLVM and Clang
70+
uses: KyleMayes/install-llvm-action@v1
71+
with:
72+
version: "16.0"
6973
- name: ccache
7074
uses: hendrikmuhs/[email protected]
7175
with:

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ function main(): void
586586
$lsanSuppressions = __DIR__ . '/.github/lsan-suppressions.txt';
587587
if (file_exists($lsanSuppressions)) {
588588
$environment['LSAN_OPTIONS'] = 'suppressions=' . $lsanSuppressions
589-
. ':print_suppressions=0:use_tls=0';
589+
. ':print_suppressions=0:use_tls=0:fast_unwind_on_malloc=false';
590590
}
591591
break;
592592
case '--repeat':

0 commit comments

Comments
 (0)