File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,19 @@ jobs:
223
223
uses : actions/checkout@v3
224
224
with :
225
225
fetch-depth : 0
226
+ - uses : actions/checkout@v3
227
+ with :
228
+ repository : iluuu1994/php-benchmark-data
229
+ ssh-key : ${{ secrets.BENCHMARK_DATA_DEPLOY_KEY }}
230
+ path : benchmark/repos/data
231
+ - uses : actions/checkout@v3
232
+ with :
233
+ repository : iluuu1994/symfony-demo-2.2.3
234
+ path : benchmark/repos/symfony-demo-2.2.3
235
+ - uses : actions/checkout@v3
236
+ with :
237
+ repository : iluuu1994/wordpress-6.2
238
+ path : benchmark/repos/wordpress-6.2
226
239
- name : apt
227
240
run : |
228
241
set -x
@@ -263,15 +276,10 @@ jobs:
263
276
run : make -j$(/usr/bin/nproc) >/dev/null
264
277
- name : make install
265
278
uses : ./.github/actions/install-linux
266
- - name : Prepare SSH key
279
+ - name : Setup
267
280
run : |
268
- mkdir -p ~/.ssh
269
- echo "${{ secrets.BENCHMARK_DATA_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
270
- chmod 600 ~/.ssh/id_ed25519
271
281
git config --global user.name "Benchmark"
272
282
git config --global user.email "benchmark@php.net"
273
- - name : Setup
274
- run : |
275
283
sudo service mysql start
276
284
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS wordpress"
277
285
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
You can’t perform that action at this time.
0 commit comments