Newer
Older
variables:
GIT_SUBMODULE_STRATEGY: recursive
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stages:
- compile
- deploy
compile:
stage: compile
script:
- mkdir build
- cd build
- cmake ..
only:
- master
- python12_update
pages:
stage: deploy
script:
- make html
- cd ..
artifacts:
paths:
- public
only:
- master
- python12_update
pack-linux:
stage: deploy
script:
- cd build/python-api-src
- stubgen -m library -o .
- cd ../..
- python3 generate_pydocs.py
- build/python-api-src/library.cpython-312-x86_64-linux-gnu.so
- build/python-api-src/library.pyi