Skip to content
Snippets Groups Projects
Select Git revision
  • c1b35ca4d5df2b2052224274c26bea7a8eee8ac5
  • develop default protected
  • feature/variational-hydro
  • origin/stage/bouguettaia
  • feature/gmsh-reader
  • feature/reconstruction
  • save_clemence
  • feature/kinetic-schemes
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/composite-scheme
  • hyperplastic
  • feature/polynomials
  • feature/gks
  • feature/implicit-solver-o2
  • feature/coupling_module
  • feature/implicit-solver
  • feature/merge-local-dt-fsi
  • master protected
  • v0.5.0 protected
  • v0.4.1 protected
  • v0.4.0 protected
  • v0.3.0 protected
  • v0.2.0 protected
  • v0.1.0 protected
  • Kidder
  • v0.0.4 protected
  • v0.0.3 protected
  • v0.0.2 protected
  • v0 protected
  • v0.0.1 protected
33 results

Makefile

Blame
  • linux-simple-builds.yml 3.48 KiB
    name: Linux builds (basic)
    
    on: [push, pull_request]
    
    jobs:
      build:
        name: ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
        runs-on: ubuntu-20.04
        strategy:
          matrix:
            cxx:
              - g++-5
              - g++-6
              - g++-7
              - g++-8
              - g++-9
              - g++-10
              - clang++-6.0
              - clang++-7
              - clang++-8
              - clang++-9
              - clang++-10
            build_type: [Debug, Release]
            std: [14]
            include:
              - cxx: g++-5
                other_pkgs: g++-5
              - cxx: g++-6
                other_pkgs: g++-6
              - cxx: g++-7
                other_pkgs: g++-7
              - cxx: g++-8
                other_pkgs: g++-8
              - cxx: g++-9
                other_pkgs: g++-9
              - cxx: g++-10
                other_pkgs: g++-10
              - cxx: clang++-6.0
                other_pkgs: clang-6.0
              - cxx: clang++-7
                other_pkgs: clang-7
              - cxx: clang++-8
                other_pkgs: clang-8
              - cxx: clang++-9
                other_pkgs: clang-9
              - cxx: clang++-10
                other_pkgs: clang-10
              # Clang 6 + C++17
              # does not work with the default libstdc++ version thanks
              # to a disagreement on variant implementation.
              # - cxx: clang++-6.0
              #   build_type: Debug
              #   std: 17
              #   other_pkgs: clang-6.0
              # - cxx: clang++-6.0
              #   build_type: Release
              #   std: 17
              #   other_pkgs: clang-6.0
              # Clang 10 + C++17
              - cxx: clang++-10
                build_type: Debug
                std: 17
                other_pkgs: clang-10
              - cxx: clang++-10
                build_type: Release
                std: 17
                other_pkgs: clang-10
              - cxx: clang++-10
                build_type: Debug
                std: 20