From 630d1ed602e800df9502dcb3e4fb5ca0921758fd Mon Sep 17 00:00:00 2001 From: Michael Walsh Date: Fri, 18 Feb 2022 14:13:48 -0500 Subject: [PATCH] add missing NoOmp jobs to docs --- docs/github_actions.rst | 47 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/docs/github_actions.rst b/docs/github_actions.rst index a973d9ecc..64c9d10a3 100644 --- a/docs/github_actions.rst +++ b/docs/github_actions.rst @@ -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) """"""""""""""""""""""""""""""" +---------------+------------------------------------------------------------------------------------------------------------------------------+