Skip to content

Commit

Permalink
Run parallel test runner during its CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Aug 11, 2023
1 parent baf7545 commit ada1472
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/linux-full-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ jobs:
cc: gcc
cxx: g++
configureflags: --enable-openmp
- name: "Parallel unit-test runner"
shortname: paralleltests
tag: rolling
cc: gcc
cxx: g++
configureflags: --enable-parallel-unit-test-runner
- name: "Null as function template"
shortname: nullfunctions
tag: rolling
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
cc: gcc
cxx: g++
configureflags: --enable-parallel-unit-test-runner
moreflags: -lrt
tests: true
- name: "Null as function template"
shortname: nullfunctions
tag: rolling
Expand Down Expand Up @@ -231,4 +231,4 @@ jobs:
echo "#include <ql/quantlib.hpp>" > test1.cpp && echo "int main() { return 0; }" >> test1.cpp
echo "#include <ql/quantlib.hpp>" > test2.cpp
make install
${{ matrix.cxx }} -O2 -g0 -Wall -Wno-unknown-pragmas -Werror ${{ matrix.cxxflags }} `quantlib-config --cflags` test1.cpp test2.cpp `quantlib-config --libs` ${{ matrix.moreflags }}
${{ matrix.cxx }} -O2 -g0 -Wall -Wno-unknown-pragmas -Werror ${{ matrix.cxxflags }} `quantlib-config --cflags` test1.cpp test2.cpp `quantlib-config --libs`

0 comments on commit ada1472

Please sign in to comment.