File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1212 - ' SLmake.inc.example'
1313 pull_request :
1414 paths-exclude :
15- - ' .github/** '
15+ - ' .github/make.yml '
1616 - ' .gitignore'
1717 - ' README'
1818 - ' **README'
1919 - ' LICENSE'
20- - ' CMAKE** '
21- - ' **CMakeLists.txt '
20+ - ' **Makefile '
21+ - ' SLmake.inc.example '
2222
2323env :
2424 CFLAGS : " -Wall -pedantic"
25- FFLAGS : " -fcheck=all"
25+ FFLAGS : " -fcheck=all,no-bounds "
2626 BUILD_TYPE : Release
2727
2828defaults :
@@ -39,12 +39,16 @@ jobs:
3939 - name : Checkout ScaLAPACK
4040 uses : actions/checkout@v2
4141
42+ - name : Install ninja-build tool
43+ uses : seanmiddleditch/gha-setup-ninja@v3
44+
4245 - name : Install MPI
4346 run : sudo apt install mpich
4447
4548 - name : CMake configuration
4649 run : >
4750 cmake -B build
51+ -G Ninja
4852 -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
4953 -D CMAKE_INSTALL_PREFIX=${{github.workspace}}/scalapack_install
5054 -D BUILD_SHARED_LIBS=ON
5559 run : |
5660 ctest -D ExperimentalStart
5761 ctest -D ExperimentalConfigure
58- ctest -D ExperimentalBuild -j
62+ ctest -D ExperimentalBuild
5963
6064 - name : Install
6165 run : cmake --build build --target install
Original file line number Diff line number Diff line change 1212 - ' **CMakeLists.txt'
1313 pull_request :
1414 paths-exclude :
15- - ' .github/** '
15+ - ' .github/cmake.yml '
1616 - ' .gitignore'
1717 - ' README'
1818 - ' **README'
You can’t perform that action at this time.
0 commit comments