forked from crazyxman/simdjson_php
-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (113 loc) · 3.21 KB
/
integration.yml
File metadata and controls
128 lines (113 loc) · 3.21 KB
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
name: CI
on: [push, pull_request]
jobs:
Alpine:
strategy:
matrix:
php-version:
- "8.0-cli-alpine3.16"
- "8.1-cli-alpine3.19"
- "8.2-cli-alpine3.19"
- "8.3-cli-alpine3.19"
- "8.4-cli-alpine3.19"
- "8.5-cli-alpine3.22"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Build and test extension"
run: "docker build -t simdjsontest -f docker-alpine --build-arg BASE_IMAGE=${{ matrix.php-version }} ."
- name: "Show info"
run: "docker run --rm simdjsontest php --ri simdjson"
Ubuntu-dev:
strategy:
matrix:
php-version:
- "8.2.30"
- "8.3.30"
- "8.4.17"
- "8.5.2"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Build PHP and extension in development mode"
run: "docker build -f docker-dev --build-arg PHP_VERSION=${{ matrix.php-version }} ."
Ubuntu:
strategy:
fail-fast: false
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"
- "8.5"
os:
- ubuntu-latest
- ubuntu-24.04-arm
experimental: [false]
runs-on: ${{ matrix.os }}
name: PHP ${{ matrix.php-version }} Test on ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
extensions: json
# for correct php-config extension dir, see https://github.com/shivammathur/setup-php/issues/147
tools: pecl, phpize, php-config
- name: Build extension
run: |
export NO_INTERACTION=true
export REPORT_EXIT_STATUS=1
export SIMDJSON_HIGH_MEMORY_TESTS=1
php-config --extension-dir
phpize
./configure
make -j$(nproc)
sudo make install
make test TESTS="--show-diff -j2 -q" || exit 1
- name: Show
run: "php -dextension=simdjson.so --ri simdjson"
- name: Error log
if: ${{ failure() }}
run: "ls -1t tests/*.log | xargs -d'\n' cat"
- name: Error diff
if: ${{ failure() }}
run: |
for FILE in $(find tests -name '*.diff'); do
echo $FILE
cat $FILE
echo
done
Macos:
runs-on: macos-latest
continue-on-error: false
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json
coverage: none
tools: none
- name: Build simdjson
run: |
phpize
./configure
make -j$(nproc)
- name: Run tests
run: |
export SIMDJSON_HIGH_MEMORY_TESTS=1
make test TESTS="--show-diff -j2 -q"