Skip to content
Snippets Groups Projects
.gitlab-ci.yml 822 B
Newer Older
  • Learn to ignore specific revisions
  • Ansgar Burchardt's avatar
    Ansgar Burchardt committed
    ---
    before_script:
      - duneci-install-module https://gitlab.dune-project.org/core/dune-common.git
    
    debian:9--gcc:
      image: duneci/base:9
      script:
      - dunecontrol --current --opts=/duneci/opts.gcc all
      - dunecontrol --current make build_tests
      - cd build-cmake; duneci-ctest
    
    debian:9--clang:
      image: duneci/base:9
      script:
      - dunecontrol --current --opts=/duneci/opts.clang all
      - dunecontrol --current make build_tests
      - cd build-cmake; duneci-ctest
    
    debian:8--gcc:
      image: duneci/base:8
      script:
      - dunecontrol --current --opts=/duneci/opts.gcc all
      - dunecontrol --current make build_tests
      - cd build-cmake; duneci-ctest
    
    debian:8--clang:
      image: duneci/base:8
      script:
      - dunecontrol --current --opts=/duneci/opts.clang all
      - dunecontrol --current make build_tests
      - cd build-cmake; duneci-ctest