File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 6
6
run : |
7
7
set -x
8
8
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
+
9
15
sudo apt-get update
10
16
sudo apt-get install \
11
17
bison \
45
51
snmp-mibs-downloader \
46
52
freetds-dev \
47
53
unixodbc-dev \
48
- llvm \
49
- clang \
50
54
libc-client-dev \
51
55
dovecot-core \
52
56
dovecot-pop3d \
Original file line number Diff line number Diff line change 83
83
--with-config-file-scan-dir=/etc/php.d \
84
84
${{ inputs.skipSlow == 'false' && '--with-pdo-firebird' || '' }} \
85
85
${{ inputs.skipSlow == 'false' && '--with-pdo-dblib' || '' }} \
86
- --enable-werror \
87
86
${{ inputs.configurationParameters }}
Original file line number Diff line number Diff line change 66
66
uses : ./.github/actions/setup-caddy
67
67
- name : apt
68
68
uses : ./.github/actions/apt-x64
69
+ - name : Install LLVM and Clang
70
+ uses : KyleMayes/install-llvm-action@v1
71
+ with :
72
+ version : " 16.0"
69
73
- name : ccache
70
74
uses :
hendrikmuhs/[email protected]
71
75
with :
Original file line number Diff line number Diff line change @@ -586,7 +586,7 @@ function main(): void
586
586
$ lsanSuppressions = __DIR__ . '/.github/lsan-suppressions.txt ' ;
587
587
if (file_exists ($ lsanSuppressions )) {
588
588
$ environment ['LSAN_OPTIONS ' ] = 'suppressions= ' . $ lsanSuppressions
589
- . ':print_suppressions=0:use_tls=0 ' ;
589
+ . ':print_suppressions=0:use_tls=0:fast_unwind_on_malloc=false ' ;
590
590
}
591
591
break ;
592
592
case '--repeat ' :
You can’t perform that action at this time.
0 commit comments