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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: