-
Notifications
You must be signed in to change notification settings - Fork 5
180 lines (150 loc) · 6.76 KB
/
pr.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
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
name: Test PR builds
on: pull_request
env:
S3_BUCKET: heroku-php-extensions
S3_PREFIX: pull-requests/${{ github.event.number }}/
BUILDPACK: ./vendor/heroku/heroku-buildpack-php
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
jobs:
build:
name: Test building
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
stack:
- heroku-20
- heroku-22
series:
- 20210902 # PHP 8.1
- 20220829 # PHP 8.2
- 20230831 # PHP 8.3
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Composer Install
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs
- name: Copy requirements
run: cp ${BUILDPACK}/requirements.txt .
- name: Build Dockerfile
run: |
cat ${BUILDPACK}/support/build/_docker/${{ matrix.stack }}.Dockerfile > docker/build/${{ matrix.stack }}.Dockerfile
cat docker/${{ matrix.stack }}.Dockerfile >> docker/build/${{ matrix.stack }}.Dockerfile
- name: Docker build
run: docker build --pull --tag ${{ matrix.stack }} --file docker/build/${{ matrix.stack }}.Dockerfile .
- name: Build liblzf library
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite libraries/liblzf-3.6
- name: Build lz4 library
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite libraries/lz4-1.9.3
- name: Build zstd library
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite libraries/zstd-1.4.9
- name: Build igbinary extension
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/igbinary-3.2.15
- name: Build msgpack extension
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/msgpack-2.2.0
- name: Build redis extension
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/redis-6.0.2
- name: Build relay extension
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/relay-0.6.8
- name: Build swoole 4.x extension
if: matrix.series <= 20220829
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/swoole-4.8.13
- name: Build swoole 5.x extension
if: matrix.series >= 20230831
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/swoole-5.1.1
- name: Build openswoole 4.x extension
if: matrix.series <= 20220829
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/openswoole-4.12.1
- name: Build openswoole 22.x extension
if: matrix.series >= 20230831
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env UPSTREAM_S3_BUCKET=lang-php \
--env UPSTREAM_S3_PREFIX=dist-${{ matrix.stack }}-stable/ \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} deploy.sh --overwrite extensions/no-debug-non-zts-${{ matrix.series }}/openswoole-22.1.0
mkrepo:
name: Make repository
runs-on: ubuntu-latest
timeout-minutes: 20
needs: build
strategy:
matrix:
stack:
- heroku-20
- heroku-22
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Composer Install
run: composer install --prefer-dist --no-progress --no-suggest --ignore-platform-reqs
- name: Copy requirements
run: cp ${BUILDPACK}/requirements.txt .
- name: Build Dockerfile
run: |
cat ${BUILDPACK}/support/build/_docker/${{ matrix.stack }}.Dockerfile > docker/build/${{ matrix.stack }}.Dockerfile
cat docker/${{ matrix.stack }}.Dockerfile >> docker/build/${{ matrix.stack }}.Dockerfile
- name: Docker build
run: docker build --pull --tag ${{ matrix.stack }} --file docker/build/${{ matrix.stack }}.Dockerfile .
- name: Make and upload repository
shell: 'script -q -e -c "bash {0}"'
run: |
docker run --rm -ti \
--env-file=${BUILDPACK}/support/build/_docker/env.default \
${{ matrix.stack }} mkrepo.sh --upload