Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated complex tests #32

Merged
merged 3 commits into from
Oct 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@ env:
- DOCKER_REPO=public
- GCC_CONFIG=config/defaults/config.LINUX_GFORTRAN_OPENMPI.mk
- INTEL_CONFIG=config/defaults/config.LINUX_INTEL_OPENMPI.mk
- SEPARATE_COMPLEX_BUILD=true

script:
- |
if [ $TEST_TYPE == "docker" ]; then
# Download input files for regression testing
docker exec -it app /bin/bash -c ". $BASHRC && cd $DOCKER_WORKING_DIR/input_files && ./get-input-files.sh"
# Real tests
docker exec -it app /bin/bash -c ". $BASHRC && cd $DOCKER_WORKING_DIR/reg_tests && python run_reg_tests.py -nodiff"
# Complex tests
docker exec -it app /bin/bash -c ". $BASHRC && cd $DOCKER_WORKING_DIR/reg_tests && export PETSC_ARCH=complex-opt-\$COMPILERS-\$PETSCVERSION && python run_reg_tests_cs.py -nodiff"
if [ $DOCKER_TEST_TYPE == "real" ]; then
# Real tests
docker exec -it app /bin/bash -c ". $BASHRC && cd $DOCKER_WORKING_DIR/reg_tests && python run_reg_tests.py -nodiff"
elif [ $DOCKER_TEST_TYPE == "complex" ]; then
# Complex tests
docker exec -it app /bin/bash -c ". $BASHRC && cd $DOCKER_WORKING_DIR/reg_tests && export PETSC_ARCH=complex-opt-\$COMPILERS-\$PETSCVERSION && python run_reg_tests_cs.py -nodiff"
fi
fi


Expand Down