forked from he4rt/scylladb-php-driver
-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.16 KB
/
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
39
40
41
42
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-latest']
preset: ['CICassandra', 'CIScylla']
runs-on: ${{ matrix.os }}
container: malusevd99/scylladb-php-driver:php-${{ matrix.php }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- name: Run tests
run: |
export PATH="$PATH:/usr/local/bin:/root/php/bin"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/lib/x86_64-linux-gnu:/usr/local/lib/:/usr/lib:/lib:/usr/local/lib/x86_64-linux-gnu"
cmake --preset ${{ matrix.preset }} || exit 1
cd out/${{ matrix.preset }} || exit 1
ninja install || exit 1
cd ../../
PHP_INI=$("php" --ini | grep "php.ini" | awk '{ print $5 }' | xargs -I {} printf '%s/php.ini' {})
cat cassandra.ini >> "$PHP_INI" || exit 1
cd tests
php /bin/composer install
php ./vendor/bin/pest