-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (90 loc) · 3.22 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
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
name: test
on:
push:
paths:
- 'matcher_py/src/**'
- 'matcher_rs/src/**'
- 'matcher_c/src/**'
- '.github/workflows/test.yml'
- '.cargo/config.toml'
pull_request:
paths:
- 'matcher_py/src/**'
- 'matcher_rs/src/**'
- 'matcher_c/src/**'
- '.github/workflows/test.yml'
- '.cargo/config.toml'
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform:
- runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
suffix: so
# - runner: ubuntu-latest
# target: aarch64-unknown-linux-gnu
- runner: macos-12
target: x86_64-apple-darwin
suffix: dylib
- runner: macos-14
target: aarch64-apple-darwin
suffix: dylib
- runner: windows-latest
target: x86_64-pc-windows-gnu
suffix: dll
- runner: windows-latest
target: x86_64-pc-windows-msvc
suffix: dll
steps:
- uses: actions/checkout@v4
- name: Install dependencies
if: matrix.platform.runner == 'ubuntu-latest' && matrix.platform.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install gcc-aarch64-linux-gnu
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
target: ${{ matrix.platform.target }}
- name: Build
run: cargo build --release --target ${{ matrix.platform.target }}
- name: Test
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features
- name: Test dfa
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features --features "dfa"
- name: Test runtime_build and dfa
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features --features "runtime_build,dfa"
- name: Test serde and dfa
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features --features "serde,dfa"
- name: Run doc
run: cargo doc
- name: Rename & move
shell: bash
run: |
cp ./target/${{ matrix.platform.target }}/release/*matcher_c.${{ matrix.platform.suffix }} matcher_c/matcher_c.so
cp ./target/${{ matrix.platform.target }}/release/*matcher_py.${{ matrix.platform.suffix }} matcher_py/python/matcher_py/matcher_py.so
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
RUSTFLAGS: "-Z threads=2 -D warnings"
with:
target: ${{ matrix.platform.target }}
args: --release -i python3.12
sccache: 'true'
rust-toolchain: nightly
working-directory: matcher_py
- name: Python Test
shell: bash
if: matrix.platform.runner == 'ubuntu-latest'
run: |
pip install -U pytest msgspec numpy typing_extensions
pip install ./target/wheels/*.whl
pytest matcher_py/test