add missing NoOmp jobs to docs

This commit is contained in:
Michael Walsh 2022-02-18 14:13:48 -05:00
parent baa1a4b90e
commit 630d1ed602
1 changed files with 47 additions and 0 deletions

View File

@ -25,6 +25,10 @@ The following is a summary of the jobs run in the CI process required for a PR:
+---------------------------------------------------+----------+---------------+----------+----------+
| GCC9-NoMPI-Debug-Real | GitHub | deterministic | 17 | PR/merge |
+---------------------------------------------------+----------+---------------+----------+----------+
| GCC9-NoMPI-NoOMP-(Real, Complex) | GitHub | deterministic | (31, 32) | PR/merge |
+---------------------------------------------------+----------+---------------+----------+----------+
| GCC9-NoMPI-Sandbox-Real | GitHub | deterministic | (5) | PR/merge |
+---------------------------------------------------+----------+---------------+----------+----------+
| GCC11-NoMPI-Werror-(Real, Complex) | GitHub | deterministic | (60, 60) | PR/merge |
+---------------------------------------------------+----------+---------------+----------+----------+
| Clang10-NoMPI-ASan-(Real, Complex) | GitHub | deterministic | (60, 60) | PR/merge |
@ -99,6 +103,49 @@ linux (GCC9-MPI-Gcov-Complex)
| Duration | ~50 Minutes |
+---------------+------------------------------------------------------------------------------------------------------------------------------------------------+
linux (GCC9-NoMPI-NoOMP-Real)
"""""""""""""""""""""""""""""
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Compiler | GCC |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Build Command | `cmake -GNinja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DQMC_MPI=0 -DQMC_OMP=0 -DQMC_COMPLEX=0 -DCMAKE_BUILD_TYPE=RelWithDebInfo ..` |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Test Command | `ctest --output-on-failure -L deterministic -j 2` |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Objective | Test Coverage (Real) |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Duration | ~31 Minutes |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
linux (GCC9-NoMPI-NoOMP-Complex)
""""""""""""""""""""""""""""""""
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Compiler | GCC |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Build Command | `cmake -GNinja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DQMC_MPI=0 -DQMC_OMP=0 -DQMC_COMPLEX=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ..` |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Test Command | `ctest --output-on-failure -L deterministic -j 2` |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Objective | Test Coverage (Complex) |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
| Duration | ~32 Minutes |
+---------------+----------------------------------------------------------------------------------------------------------------------------------------------+
linux (GCC9-NoMPI-Sandbox-Real)
"""""""""""""""""""""""""""""""
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Compiler | GCC |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Build Command | `cmake -GNinja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DQMC_MPI=0 -DQMC_BUILD_SANDBOX_ONLY=ON -DQMC_COMPLEX=0 -DCMAKE_BUILD_TYPE=RelWithDebInfo ..` |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Test Command | `ctest --output-on-failure -L deterministic -j 2` |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Objective | Test Coverage (Real) |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Duration | ~5 Minutes |
+---------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------+
linux (GCC11-NoMPI-Werror-Real)
"""""""""""""""""""""""""""""""
+---------------+------------------------------------------------------------------------------------------------------------------------------+