matrix field API does not constraint eval() result type to be fdapde:… #236
This file contains hidden or 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
name: test-linux-gcc | |
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 gcc | |
echo "TEST_RESULT=$(echo $?)" >> $GITHUB_ENV | |
- name: check_tests_passed | |
run: | | |
if [ "$TEST_RESULT" -eq "0" ]; then | |
exit 0 | |
else | |
exit 1 | |
fi |