-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
code tested against clang, apple-clang compilers. Fixed segfault caus…
…ed by bad_cast in clang
- Loading branch information
Showing
9 changed files
with
125 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: test-linux-clang | ||
on: | ||
push: | ||
branches: [ stable, develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: alepalu/fdapde-docker-linux:latest | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'recursive' | ||
- name: run_tests | ||
run: | | ||
cd test/ | ||
export Eigen3_DIR=/usr/share/cmake/Modules # reguired to let eigen3 work with CMake in alpine | ||
chmod +x run_tests.sh | ||
./run_tests.sh --compiler clang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: test-macos-clang | ||
on: | ||
push: | ||
branches: [ stable, develop ] | ||
|
||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
steps: | ||
- name: checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'recursive' | ||
- name: install_deps | ||
run: | | ||
brew install eigen | ||
- name: run_tests | ||
run: | | ||
cd test/ | ||
chmod +x run_tests.sh | ||
./run_tests.sh --compiler clang |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule core
updated
from a0cc00 to b12443
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters