Skip to content
Snippets Groups Projects
.gitlab-ci.yml 345 B
Newer Older
  • Learn to ignore specific revisions
  • variables:
      GIT_SUBMODULE_STRATEGY: recursive
    
    
    pages:
      image: davidbergstrom/pycommandcenterenv
      stage: deploy
      script:
        - mkdir build
        - cd build
        - cmake ..
    
        - make -j $(nproc) library
    
    David Bergström's avatar
    David Bergström committed
        - cd ../docs
    
    David Bergström's avatar
    David Bergström committed
        - cp -r docs/_build/html/* public
    
      artifacts:
        paths:
          - public
      only:
        - master