Skip to content
Snippets Groups Projects
Forked from Starcraft AI Course / PyCommandCenter
208 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 434 B
pages:
  image: davidbergstrom/pycommandcenterenv
  stage: deploy
  before_script:
    - git submodule sync --recursive
    - git submodule update --init --recursive
  script:
    - mkdir build
    - cd build
    - cmake ..
    - make -j 3 library
    - cd ../build
    - make html
    - cd ..
    - mkdir .public
    - cp -r docs/_build/html .public
    - mv .public public
  artifacts:
    paths:
      - public
  only:
    - master