prepare v4.2.6 #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# generated file; do not edit! | |
name: curl-matrix | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
curl-master: | |
name: curl-master | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "master" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_10_1: | |
name: curl-8_10_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_10_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_10_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_9_1: | |
name: curl-8_9_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_9_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_9_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_8_0: | |
name: curl-8_8_0 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_8_0" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_8_0 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_7_1: | |
name: curl-8_7_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_7_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_7_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_6_0: | |
name: curl-8_6_0 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_6_0" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_6_0 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_5_0: | |
name: curl-8_5_0 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_5_0" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_5_0 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_2_1: | |
name: curl-8_2_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_2_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_2_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-8_1_1: | |
name: curl-8_1_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "8_1_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-8_1_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-7_88_1: | |
name: curl-7_88_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "7_88_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-7_88_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-7_81_0: | |
name: curl-7_81_0 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "7_81_0" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-7_81_0 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-7_78_0: | |
name: curl-7_78_0 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "7_78_0" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-7_78_0 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-7_76_1: | |
name: curl-7_76_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "7_76_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-7_76_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |
curl-7_61_1: | |
name: curl-7_61_1 | |
continue-on-error: true | |
env: | |
PHP: "8.3" | |
CURL: "7_61_1" | |
enable_debug: "yes" | |
enable_iconv: "yes" | |
with_http_libcurl_dir: "/opt" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
path: http | |
- uses: actions/checkout@v2 | |
with: | |
repository: curl/curl | |
path: curl | |
ref: curl-7_61_1 # | |
- name: Install | |
run: | | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble main' | sudo tee -a /etc/apt/sources.list && \ | |
echo 'deb-src http://azure.archive.ubuntu.com/ubuntu noble-updates main' | sudo tee -a /etc/apt/sources.list && \ | |
sudo apt-get update -y && \ | |
sudo apt-get build-dep -y libcurl4-openssl-dev && \ | |
sudo apt-get install -y \ | |
php-cli \ | |
php-pear \ | |
libidn11-dev \ | |
libidn2-0-dev \ | |
libicu-dev \ | |
libevent-dev \ | |
libbrotli-dev \ | |
re2c | |
- name: Curl | |
run: | | |
sudo chmod +x /usr/share/libtool/build-aux/ltmain.sh | |
sudo ln -s /usr/share/libtool/build-aux/ltmain.sh /usr/bin/libtool | |
cd curl | |
./buildconf | |
./configure --prefix=/opt --disable-dependency-tracking --with-ssl --with-openssl --without-libssh2 --disable-ldap | |
make -j2 | |
make install | |
- name: Prepare | |
run: | | |
cd http | |
make -f scripts/ci/Makefile php || make -f scripts/ci/Makefile clean php | |
make -f scripts/ci/Makefile pecl PECL=m6w6/ext-raphf.git:raphf:master | |
- name: Build | |
run: | | |
cd http | |
make -f scripts/ci/Makefile ext PECL=http | |
- name: Test | |
run: | | |
cd http | |
make -f scripts/ci/Makefile test | |