forked from datastax/php-driver
-
-
Notifications
You must be signed in to change notification settings - Fork 25
38 lines (34 loc) · 964 Bytes
/
test.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
name: 'Test PHP Extension'
on:
workflow_call:
push:
branches:
- v1.3.x
pull_request:
branches:
- v1.3.x
jobs:
test:
strategy:
matrix:
php: ['8.1.29', '8.2.20', '8.3.8', '8.1.29-zts', '8.2.20-zts', '8.3.8-zts']
os: ['ubuntu-24.04']
preset: ['CICassandra', 'CIScylla']
fail-fast: false
runs-on: ubuntu-latest
container: malusevd99/scylladb-php-driver:${{ matrix.os }}-php-${{ matrix.php }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Run tests
run: |
cmake --preset ${{ matrix.preset }} || exit 1
cd out/${{ matrix.preset }} || exit 1
ninja install || exit 1
cd ../../
cat cassandra.ini >> "$(php-config --ini-path | xargs -I {} printf '%s/php.ini' {})" || exit 1
cd tests
composer install
php ./vendor/bin/pest