Skip to content

Commit a8d2e97

Browse files
authored
Merge pull request #2 from w1th0utnam3/main
Upgrade Eigen to 5.0.1, Actions CI workflow, small fixes
2 parents e13ec2d + 4e67efd commit a8d2e97

File tree

433 files changed

+145231
-87218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

433 files changed

+145231
-87218
lines changed

.github/workflows/ci.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "**" ]
6+
pull_request:
7+
branches: [ "**" ]
8+
9+
jobs:
10+
build-and-test:
11+
name: ${{ matrix.os }} / ${{ matrix.build_type }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os: [ubuntu-latest, macos-latest]
17+
build_type: [Release]
18+
19+
steps:
20+
- uses: actions/checkout@v6
21+
22+
- name: Install libomp (macOS)
23+
if: runner.os == 'macOS'
24+
run: brew install libomp
25+
26+
- name: Configure CMake
27+
run: |
28+
cmake -B build \
29+
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
30+
-DSYMX_ENABLE_DIAGNOSTIC_TESTS=OFF
31+
32+
- name: Build tests
33+
run: cmake --build build --target tests --parallel $(nproc 2>/dev/null || sysctl -n hw.logicalcpu)
34+
35+
- name: Run tests
36+
working-directory: build
37+
run: ctest --output-on-failure --build-config ${{ matrix.build_type }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
__pycache__
22
build/
33
build/docs
4+
.idea
5+
.DS_Store

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ If SymX contributes to your research, please cite the paper.
206206
```
207207

208208
## Contributors
209-
- [José Antonio Fernández-Fernández](https://github.com/JoseAntFer) (Correspondence author)
210-
- [Fabian Loeschner](https://github.com/w1th0utnam3)
209+
- [José Antonio Fernández-Fernández](https://github.com/JoseAntFer) (Corresponding author)
210+
- [Fabian Löschner](https://github.com/w1th0utnam3)
211211
- [Lukas Westhofen](https://github.com/BjoernBinaer)
212212
- [Andreas Longva](https://github.com/Andlon)
213213
- [Jan Bender](https://animation.rwth-aachen.de/person/1/)

0 commit comments

Comments
 (0)