Skip to content
Snippets Groups Projects
Commit e8b345b6 authored by Daniel de Leng's avatar Daniel de Leng
Browse files

Test separate stages in CI

parent 6c12f1b3
No related branches found
No related tags found
No related merge requests found
Pipeline #133096 failed
variables:
GIT_SUBMODULE_STRATEGY: recursive
pages:
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stage: deploy
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stages:
- compile
- deploy
compile:
stage: compile
script:
- mkdir build
- cd build
- cmake ..
- make library
only:
- master
- python12_update
pages:
stage: deploy
script:
- cd ../docs
- python3 library_import_check.py
- make html
- cd ..
- mkdir public
- cp -r docs/_build/html/* public
artifacts:
paths:
- public
only:
- master
- python12_update
pack-linux:
stage: deploy
script:
- cd build/python-api-src
- stubgen -m library -o .
- cd ../..
......@@ -24,7 +46,6 @@ pages:
- cp build/python-api-src/library.pyi artifacts
artifacts:
paths:
- public
- artifacts
only:
- master
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment