-
Notifications
You must be signed in to change notification settings - Fork 3.2k
119 lines (114 loc) · 5.01 KB
/
ext.yml
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
name: ext-swoole
on: [push, pull_request]
jobs:
build-ubuntu-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install-deps
run: sudo apt update -y && sudo apt install -y libcurl4-openssl-dev php-curl libc-ares-dev
- name: phpize
run: phpize
- name: build1
run: ./configure && make clean && make -j$(sysctl -n hw.ncpu)
- name: build2
run: ./configure --enable-sockets &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build3
run: ./configure --enable-sockets --enable-mysqlnd && make clean &&
make -j$(sysctl -n hw.ncpu)
- name: build4
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build5
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-openssl &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build6
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-openssl --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build7
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build8
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --enable-cares --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
build-ubuntu-old:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: install-deps
run: sudo apt update -y && sudo apt install -y libcurl4-openssl-dev php-curl libc-ares-dev
- name: phpize
run: phpize
- name: build1
run: ./configure && make clean && make -j$(sysctl -n hw.ncpu)
- name: build2
run: ./configure --enable-sockets &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build3
run: ./configure --enable-sockets --enable-mysqlnd && make clean &&
make -j$(sysctl -n hw.ncpu)
- name: build4
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build5
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-openssl &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build6
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build7
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --enable-cares --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
build-macos-latest:
runs-on: macos-latest
steps:
- name: install dependencies
run: brew install openssl && brew link openssl && brew install curl && brew link curl && brew install c-ares && brew link c-ares
- uses: actions/checkout@v1
- name: phpize
run: phpize
- name: build1
run: ./configure && make clean && make -j$(sysctl -n hw.ncpu)
- name: build2
run: ./configure --enable-sockets &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build3
run: ./configure --enable-sockets --enable-mysqlnd && make clean &&
make -j$(sysctl -n hw.ncpu)
- name: build4
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build5
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-openssl
--with-openssl-dir=/usr/local/opt/[email protected] &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build6
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --with-openssl-dir=/usr/local/opt/[email protected] --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
- name: build7
run: ./configure --enable-sockets --enable-mysqlnd --enable-http2 --enable-swoole-curl --enable-swoole-json
--enable-openssl --with-openssl-dir=/usr/local/opt/[email protected] --enable-cares --enable-debug-log &&
make clean && make -j$(sysctl -n hw.ncpu)
build-alpine-latest:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '7.4', '8.0', '8.1' ]
alpine-version: [ '3.11', '3.12', '3.13', '3.14', '3.15' ]
exclude:
- php-version: '8.1'
alpine-version: '3.11'
max-parallel: 8
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: build
run: |
cp .github/workflows/alpine.Dockerfile alpine.Dockerfile
docker build -t swoole . -f alpine.Dockerfile --build-arg PHP_VERSION=${{ matrix.php-version }} --build-arg ALPINE_VERSION=${{ matrix.alpine-version }}