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

Test separate stages in CI

parent afc02c2a
No related branches found
No related tags found
No related merge requests found
Pipeline #133098 failed
variables: variables:
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: recursive
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stages: stages:
- compile - compile
- deploy - deploy
compile: compile:
image: gitlab.liu.se:5000/starcraft-ai-course/pycommandcenter
stage: compile stage: compile
script: script:
- mkdir build - mkdir build
- cd build - cd build
- cmake .. - cmake ..
- make library - make library
artifacts:
paths:
- docs
- build
only: only:
- master - master
- python12_update - python12_update
...@@ -21,7 +24,7 @@ compile: ...@@ -21,7 +24,7 @@ compile:
pages: pages:
stage: deploy stage: deploy
script: script:
- cd ../docs - cd docs
- python3 library_import_check.py - python3 library_import_check.py
- make html - make html
- cd .. - cd ..
......
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