Skip to content
Snippets Groups Projects
.gitlab-ci.yml 712 B
Newer Older
  • Learn to ignore specific revisions
  • Ansgar Burchardt's avatar
    Ansgar Burchardt committed
    ---
    
    include:
      - "https://gitlab.dune-project.org/core/ci-config/raw/master/config/common/master.yml"
      - "https://gitlab.dune-project.org/core/ci-config/raw/master/jobs/common/master.yml"
    
    
    Ansgar Burchardt's avatar
    Ansgar Burchardt committed
    before_script:
      - duneci-install-module https://gitlab.dune-project.org/core/dune-common.git
    
    
    variables:
    # Suitesparse, as installed with Debian, is thread-parallel using OpenMP.
    # OpenMP silently assumes, it can spawn as many threads as there are cores.
    # In a worst case scenario, this leads to a number of threads quadratic in
    # the core count, if you also do parallel test execution with the maximum
    # number of cores. We solve the issue by disallowing OpenMP to allocate more
    # than one thread.
      OMP_NUM_THREADS: 1