-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
290 lines (274 loc) · 7.72 KB
/
action.yml
File metadata and controls
290 lines (274 loc) · 7.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
name: Compile and install PHP from source
description: Compile and install PHP from source
inputs:
branch:
default: ''
description: >
php-src branch
runs:
using: composite
steps:
- name: Checkout php-src repo
uses: actions/checkout@v6
with:
repository: php/php-src
path: .php-src
ref: ${{ inputs.branch }}
- name: Checkout curl repo
uses: actions/checkout@v6
with:
repository: curl/curl
path: .curl
fetch-depth: 0
- name: Checkout latest release tag
shell: bash
run: |
cd .curl
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
git checkout $LATEST_TAG
cd ../
- name: Install dependencies
shell: bash
run: |
set -x
export DEBIAN_FRONTEND=noninteractive
sudo sed -i 's/^Types: deb$/Types: deb deb-src/' /etc/apt/sources.list.d/ubuntu.sources
sudo apt update -y | true
sudo apt build-dep libcurl4-openssl-dev curl -y
sudo apt build-dep libcurl4-openssl-dev curl -y
sudo apt install -y \
libgsasl-dev \
autoconf \
gcc \
make \
unzip \
bison \
re2c \
locales \
ldap-utils \
openssl \
slapd \
language-pack-de \
libgmp-dev \
libicu-dev \
libtidy-dev \
libenchant-2-dev \
libbz2-dev \
libsasl2-dev \
libxpm-dev \
libzip-dev \
libsqlite3-dev \
libsqlite3-mod-spatialite \
libwebp-dev \
libonig-dev \
libxml2-dev \
libxslt1-dev \
libpq-dev \
libreadline-dev \
libldap2-dev \
libsodium-dev \
libargon2-dev \
libmm-dev \
libsnmp-dev \
snmpd \
snmp-mibs-downloader \
freetds-dev \
unixodbc-dev \
llvm \
clang \
sendmail \
firebird-dev \
liblmdb-dev \
libtokyocabinet-dev \
libdb-dev \
libqdbm-dev \
libjpeg-dev \
libpng-dev \
libavif-dev \
libfreetype6-dev \
libc-client-dev \
libkrb5-dev
cd ..
- name: Show existing env
shell: bash
run: |
curl --version
gcc -v
- name: Configure Curl build
shell: bash
run: |
set -x
cd .curl
autoreconf -fi
./configure --disable-symbol-hiding --enable-versioned-symbols \
--enable-threaded-resolver --with-lber-lib=lber \
--enable-websockets \
--with-gssapi=/usr --with-nghttp2 \
--includedir=/usr/include/$(DEB_HOST_MULTIARCH) \
--with-zsh-functions-dir=/usr/share/zsh/vendor-completions \
--with-fish-functions-dir=/usr/share/fish/vendor_completions.d \
--with-ca-path=/etc/ssl/certs \
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \
--without-libssh --with-libssh2 \
--with-openssl \
--enable-http \
--enable-ftp \
--enable-file \
--enable-ipfs \
--enable-ldap \
--enable-ldaps \
--enable-rtsp \
--enable-proxy \
--enable-dict \
--enable-telnet \
--enable-tftp \
--enable-pop3 \
--enable-imap \
--enable-smb \
--enable-smtp \
--enable-gopher \
--enable-mqtt \
--enable-manual \
--enable-docs \
--enable-ipv6 \
--enable-pthreads \
--enable-verbose \
--enable-sspi \
--enable-basic-auth \
--enable-bearer-auth \
--enable-digest-auth \
--enable-kerberos-auth \
--enable-negotiate-auth \
--enable-aws \
--enable-ntlm \
--enable-tls-srp \
--enable-unix-sockets \
--enable-cookies \
--enable-socketpair \
--enable-sspi \
--enable-http-auth \
--with-imap \
--with-imap-ssl \
--with-imap-ssl \
--enable-httpsrr \
--enable-ssls-export \
--enable-sspi \
--with-kerberos
cd ../
- name: Compile Curl
shell: bash
run: |
cd ./.curl
make -j$(/usr/bin/nproc) >/dev/null
cd ../
- name: Install Curl
shell: bash
run: |
set -x
cd ./.curl
sudo make install
sudo ldconfig
cd ../
- name: Show version info
shell: bash
run: |
curl --version
- name: Configure build
shell: bash
env:
PHP_BUILD_PROVIDER: "[PHP.Watch] compile-php action"
run: |
set -x
cd .php-src
./buildconf --force
./configure \
--enable-option-checking=fatal \
--prefix=/usr \
--enable-phpdbg \
--enable-fpm \
--with-pdo-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pgsql \
--with-pdo-pgsql \
--with-pdo-sqlite \
--enable-intl \
--without-pear \
--enable-gd \
--with-jpeg \
--with-webp \
--with-avif \
--with-freetype \
--with-xpm \
--enable-exif \
--with-zip \
--with-zlib \
--enable-soap \
--enable-xmlreader \
--with-xsl \
--with-tidy \
--enable-sysvsem \
--enable-sysvshm \
--enable-shmop \
--enable-pcntl \
--with-readline \
--enable-mbstring \
--with-curl \
--with-gettext \
--enable-sockets \
--with-bz2 \
--with-openssl \
--with-gmp \
--enable-bcmath \
--enable-calendar \
--enable-ftp \
--with-enchant=/usr \
--enable-sysvmsg \
--with-ffi \
--with-ldap \
--with-ldap-sasl \
--with-password-argon2 \
--with-mhash \
--with-sodium \
--enable-dba \
--with-cdb \
--enable-flatfile \
--enable-inifile \
--with-tcadb \
--with-lmdb \
--with-qdbm \
--with-snmp \
--with-unixODBC \
--with-pdo-odbc=unixODBC,/usr \
--with-config-file-path=/etc \
--with-config-file-scan-dir=/etc/php.d \
--with-pdo-dblib
cd ../
- name: Compile PHP
shell: bash
run: |
cd ./.php-src
make -j$(/usr/bin/nproc) >/dev/null
cd ../
- name: Install PHP
shell: bash
run: |
set -x
cd ./.php-src
sudo make install
sudo mkdir -p /etc/php.d
sudo chmod 777 /etc/php.d
cd ../
- name: Install opcache
shell: bash
if: inputs.branch == 'PHP-8.4'
run: |
echo zend_extension=opcache.so >> /etc/php.d/opcache.ini
- name: Enable opcache
shell: bash
run: |
echo opcache.enable=1 >> /etc/php.d/opcache.ini
echo opcache.enable_cli=1 >> /etc/php.d/opcache.ini
- name: Cleanup
shell: bash
run: |
rm .php-src -Rf