Skip to content
Snippets Groups Projects
Select Git revision
  • ee594f3c263badbffdeb65623fc165f9447e0f9b
  • 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

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 892 B
    stages:
      - build
      - test
      - deploy
    
    variables:
      CTEST_OUTPUT_ON_FAILURE: 1
    
    include:
      - local: '/.gitlab-ci/gcc8-seq-dbg.yml'
      - local: '/.gitlab-ci/clang8-seq-coverage.yml'
    
    build:clang8-mpi-coverage:
      image: localhost:5000/ubuntu_clang8_mpi
      stage: build
      script:
        - mkdir -p build/clang8-cov-mpi
        - cd build/clang8-cov-mpi
        - CXX=clang++-8 CC=clang-8 cmake ../.. -DCMAKE_BUILD_TYPE=Coverage -DCLANG_FORMAT=/usr/bin/clang-format-8
        - make pugs
      cache:
        key: "${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
        paths:
          - build/clang8-cov-mpi
        untracked: true
    
    test:clang8-mpi-coverage:
      image: localhost:5000/ubuntu_clang8_mpi
      stage: test
      dependencies:
        - build:clang8-mpi-coverage
      script:
        - cd build/clang8-cov-mpi
        - make coverage
      cache:
        key: "${CI_COMMIT_REF_SLUG}-clang8-cov-mpi"
        paths:
          - build/clang8-cov-mpi
        untracked: true