mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
We are adding extra (non-phpt) test suites in [1] and [2]. In order to avoid touching CI files too often (which are maintained in 8.1 and merged in upper branches), we add a single entry point to call the extra tests. The entry point can be updated in branches without synchronizing all the way from 8.1. CI files still need to be touched to install dependencies of these tests, but this should be manageable as these do not change often and are the same in every branch. Closes GH-19242. [1] https://github.com/php/php-src/pull/16987 [2] https://github.com/php/php-src/pull/18939
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: apt
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- shell: bash
|
|
run: |
|
|
set -x
|
|
|
|
OPCACHE_TLS_TESTS_DEPS="gcc clang lld"
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
dpkg --add-architecture i386
|
|
apt-get update -y | true
|
|
# TODO: Reenable postgresql + postgresql-contrib packages once they work again.
|
|
apt-get install -y \
|
|
autoconf \
|
|
bison \
|
|
curl \
|
|
g++-multilib \
|
|
gcc-multilib \
|
|
language-pack-de \
|
|
libaspell-dev:i386 \
|
|
libbz2-dev:i386 \
|
|
libc6:i386 \
|
|
libcurl4-openssl-dev:i386 \
|
|
libffi-dev:i386 \
|
|
libfreetype6-dev:i386 \
|
|
libgmp-dev:i386 \
|
|
libgssapi-krb5-2:i386 \
|
|
libicu-dev:i386 \
|
|
libjpeg-dev:i386 \
|
|
libkrb5-dev:i386 \
|
|
libonig-dev:i386 \
|
|
libpng-dev:i386 \
|
|
libpq-dev:i386 \
|
|
libpspell-dev:i386 \
|
|
libreadline-dev:i386 \
|
|
libsasl2-dev:i386 \
|
|
libsodium-dev:i386 \
|
|
libsqlite3-dev:i386 \
|
|
libssl-dev:i386 \
|
|
libtidy-dev:i386 \
|
|
libwebp-dev:i386 \
|
|
libxml2-dev:i386 \
|
|
libxml2-dev:i386 \
|
|
libxpm-dev:i386 \
|
|
libxslt1-dev:i386 \
|
|
libzip-dev:i386 \
|
|
locales \
|
|
make \
|
|
pkg-config:i386 \
|
|
re2c \
|
|
unzip \
|
|
wget \
|
|
zlib1g-dev:i386 \
|
|
$OPCACHE_TLS_TESTS_DEPS
|