Skip to content
Snippets Groups Projects
Select Git revision
  • d738bc37751bb20f233460a2553629bebaaee98f
  • develop default protected
  • feature/kinetic-schemes
  • feature/reconstruction
  • feature/local-dt-fsi
  • feature/composite-scheme-sources
  • feature/composite-scheme-other-fluxes
  • feature/serraille
  • feature/variational-hydro
  • 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
  • feature/escobar-smoother
  • feature/hypoelasticity-clean
  • feature/hypoelasticity
  • 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

gcc8-seq-dbg.yml

Blame
  • gcc8-seq-dbg.yml 718 B
    build:gcc8-seq-dbg:
      image: localhost:5000/ubuntu_gcc8
      stage: build
      script:
        - mkdir -p build/gcc8-seq-dbg
        - cd build/gcc8-seq-dbg
        - CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
        - make pugs
      cache:
        key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-dbg"
        paths:
          - build/gcc8-seq-dbg
        untracked: true
    
    test:gcc8-seq-dbg:
      image: localhost:5000/ubuntu_gcc8
      stage: test
      dependencies:
        - build:gcc8-seq-dbg
      script:
        - mkdir -p build/gcc8-seq-dbg
        - cd build/gcc8-seq-dbg
        - CXX=g++-8 CC=gcc-8 cmake ../.. -DCMAKE_BUILD_TYPE=Debug
        - make run_unit_tests
      cache:
        key: "${CI_COMMIT_REF_SLUG}-gcc8-seq-dbg"
        paths:
          - build/gcc8-seq-dbg
        untracked: true