-
Notifications
You must be signed in to change notification settings - Fork 14
86 lines (71 loc) · 2.22 KB
/
Copy pathci-cpp.yaml
File metadata and controls
86 lines (71 loc) · 2.22 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
name: ci-cpp
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
env:
PYTHON_VERSION: '3.11'
jobs:
cpp-tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout-repo
uses: actions/checkout@v5
- name: setup-python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: install-repo
run: |
python -m pip install --upgrade pip
pip install pytest pytest-subtests inline-snapshot
BITBIRCH_BUILD_NATIVE=1 BITBIRCH_BUILD_CPP=1 pip install --verbose .
- name: run-pytest
run: BITBIRCH_CANT_SKIP_CPP_TESTS=1 pytest -s ./tests/test_similarity.py
cpp-tests-win:
runs-on: windows-latest
steps:
- name: checkout-repo
uses: actions/checkout@v5
- name: setup-python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: install-repo
run: |
python -m pip install --upgrade pip
pip install pytest pytest-subtests inline-snapshot
$env:BITBIRCH_BUILD_CPP="1"
pip install --verbose .
- name: run-pytest
run: |
$env:BITBIRCH_CANT_SKIP_CPP_TESTS="1"
pytest -s ./tests/test_similarity.py
# Ubuntu 24.04 for reproducibility in regression tests only
# coverage makes tests slightly slower, so regression tests should not run with
# coverage
# skip these for pushes to main since they are slower
cpp-regression-tests:
runs-on: ubuntu-24.04
if: github.ref != 'refs/heads/main'
steps:
- name: checkout-repo
uses: actions/checkout@v5
- name: setup-python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: install-repo
run: |
python -m pip install --upgrade pip
pip install pytest pytest-subtests inline-snapshot
BITBIRCH_BUILD_NATIVE=1 BITBIRCH_BUILD_CPP=1 pip install --verbose .
- name: run-pytest
run: BITBIRCH_CANT_SKIP_CPP_TESTS=1 pytest -s ./tests/test_regression.py