Skip to content

Commit 69efc4e

Browse files
authored
Merge pull request #1 from ace411/develop
v0.1.0 changes
2 parents 1c5ae9e + 533fdbe commit 69efc4e

17 files changed

+836
-554
lines changed

.github/workflows/ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: ext-mrloop CI
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
jobs:
7+
build:
8+
runs-on: 'ubuntu-latest'
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
php: ['8.1', '8.2', '8.3']
13+
name: PHP ${{ matrix.php }}
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Install PHP
17+
uses: shivammathur/setup-php@master
18+
with:
19+
php-version: ${{ matrix.php }}
20+
extensions: posix, pcntl
21+
- name: Run tests
22+
run: |
23+
git clone https://github.com/markreedz/mrloop.git mrloop && \
24+
git clone https://github.com/axboe/liburing.git liburing && cd liburing && make && sudo make install && \
25+
cd ../ && git clone https://github.com/h2o/picohttpparser.git picohttp && \
26+
phpize && ./configure --with-mrloop="$(pwd)/mrloop" --with-picohttp="$(pwd)/picohttp" && \
27+
make && make test

0 commit comments

Comments
 (0)