mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
11 lines
262 B
Bash
Executable file
11 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
# Run all debug tests
|
|
./check_source.py
|
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
|
./run_tests.py -C "^hdf5-debug$|^omp-hdf5-debug|^mpi-hdf5-debug|^phdf5-debug$|^phdf5-omp-debug$" -j 2 -s
|
|
else
|
|
./run_tests.py -C "^hdf5-debug$" -j 2
|
|
fi
|