-
Notifications
You must be signed in to change notification settings - Fork 4
93 lines (77 loc) · 2.35 KB
/
build-and-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: Build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_c:
name: C, C++
strategy:
matrix:
build_type: [ Release, Debug ]
os: [ ubuntu-24.04, windows-2022, macos-14 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }}
- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest -C ${{ matrix.build_type }}
build_c_so:
name: C, C++ Shared Library
strategy:
matrix:
os: [ ubuntu-24.04, windows-2022, macos-14 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON
- name: Build
run: cmake --build ${{ github.workspace }}/build --config Release
- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest -C Release
build_32bit:
name: Linux 32-bit
runs-on: ubuntu-24.04
env:
BUILD_TYPE: Release
CFLAGS: "-m32"
CXXFLAGS: "-m32"
LDFLAGS: "-m32"
steps:
- name: Install Multilib support
run: sudo apt-get install -y gcc-multilib g++-multilib
- uses: actions/checkout@v4
- name: Configure
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build
run: cmake --build ${{ github.workspace }}/build --config $BUILD_TYPE
- name: Test
working-directory: ${{ github.workspace }}/build
run: ctest -C $BUILD_TYPE
build_cython:
name: Python
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Build wheel
run: |
python -m pip install --upgrade pip build
python -m build -w
- name: Install wheel
run: python -m pip install dist/*.whl
- name: Test
run: python bindings/python/tests/ckdl_test.py