Skip to content
Snippets Groups Projects
Commit e81c6997 authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

in the pipeline, move compile with default compiler to last, to leave those...

in the pipeline, move compile with default compiler to last, to leave those executables for the run test
parent 37d22e4d
No related branches found
No related tags found
No related merge requests found
......@@ -46,8 +46,6 @@ building_stage:
- echo "Getting system info ..."
- cat /etc/os-release
- cd src
- echo "Running make with default compilers..."
- make wipe && make -j
- echo "Running make with gnu compilers version 11..."
- make wipe && CXX=g++-11 FC=gfortran-11 make -j
- echo "Running make with gnu compilers version 12..."
......@@ -60,6 +58,8 @@ building_stage:
- make wipe && CXX="clang++-15 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Running make with gnu fortran version 12 and clang version 16..."
- make wipe && CXX="clang++-16 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Finally running make with default compilers..."
- make wipe && make -j
- make docs -j && make -C ../doc/build/latex -j
running_stage:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment