Skip to content
Snippets Groups Projects
Select Git revision
  • 80c785c6fa291771d87c8440b3868c31168afa5c
  • develop default protected
  • feature/local-dt-fsi
  • origin/stage/bouguettaia
  • feature/variational-hydro
  • feature/gmsh-reader
  • feature/reconstruction
  • save_clemence
  • feature/kinetic-schemes
  • 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

no-exceptions.yml

Blame
  • no-exceptions.yml 740 B
    name: No-Exceptions
    
    on:
      push:
        paths-ignore:
          - 'README.md'
          - 'doc/**'
      pull_request:
        paths-ignore:
          - 'README.md'
          - 'doc/**'
    
    jobs:
      no-exceptions:
        strategy:
          fail-fast: false
          matrix:
            compiler: [g++, clang++]
            build_type: [Debug, Release]
    
        runs-on: ubuntu-latest
    
        env:
          CXX: ${{ matrix.compiler }}
    
        steps:
        - uses: actions/checkout@v2
    
        - run: cmake -E make_directory build
    
        - working-directory: build/
          run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_FLAGS="-fno-exceptions"
    
        - working-directory: build/
          run: cmake --build .
    
        - working-directory: build/
          run: ctest --output-on-failure