1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 19:04:40 +01:00

Test segfaults

This commit is contained in:
Daniil Gentili 2023-12-29 15:07:57 +01:00
parent 5fa4e0a68d
commit 6891b71b2c
7 changed files with 5 additions and 15 deletions

View File

@ -1,6 +1,3 @@
labels:
platform: linux/aarch64
clone:
git:
when:

View File

@ -1,8 +1,6 @@
matrix:
php:
- "8.1"
platform:
- linux/aarch64
labels:
platform: ${platform}

View File

@ -1,8 +1,6 @@
matrix:
php:
- "8.1"
platform:
- linux/aarch64
labels:
platform: ${platform}

View File

@ -1,6 +1,3 @@
labels:
platform: linux/aarch64
clone:
git:
when:

View File

@ -1,8 +1,6 @@
matrix:
php:
- "8.1"
platform:
- linux/aarch64
labels:
platform: ${platform}

View File

@ -19,7 +19,8 @@ for f in 192.168.1.30 192.168.69.236 192.168.69.233 192.168.69.207 192.168.69.13
fi
done
arches="arm64"
arches=""
#arches="arm64"
if [ $has_x86 -eq 1 ]; then
arches="$arches amd64"
fi

View File

@ -44,9 +44,9 @@ RUN set -eux; \
# Enable linker optimization (this sorts the hash buckets to improve cache locality, and is non-default)
# https://github.com/docker-library/php/issues/272
# -D_LARGEFILE_SOURCE and -D_FILE_OFFSET_BITS=64 (https://www.php.net/manual/en/intro.filesystem.php)
ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g"
ENV PHP_CFLAGS="-fstack-protector-strong -fpic -fpie -O0 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -g"
ENV PHP_CPPFLAGS="$PHP_CFLAGS"
ENV PHP_LDFLAGS="-Wl,-O1 -pie"
ENV PHP_LDFLAGS="-Wl,-O0 -pie"
ENV GPG_KEYS 1198C0117593497A5EC5C199286AF1F9897469DC C28D937575603EB4ABB725861C0779DC5C0A9DE4 AFD8691FDAEDF03BDF6E460563F15A9B715376CA
@ -162,6 +162,7 @@ RUN set -eux; \
\
--disable-cgi \
\
--enable-debug \
--enable-fpm \
--with-ffi \
--enable-pcntl \