Skip to content
Snippets Groups Projects
Verified Commit 2307f874 authored by Josch Morgenstern's avatar Josch Morgenstern
Browse files

disable all ci-jobs

parent b87e6d71
No related branches found
No related tags found
1 merge request!103Added project wobble_bobble and refactored some parts of the framework
...@@ -8,48 +8,48 @@ stages: ...@@ -8,48 +8,48 @@ stages:
- build - build
- deploy - deploy
build_ubuntu_gcc: # build_ubuntu_gcc:
only: # only:
variables: # variables:
- $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i # - $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
stage: build # stage: build
tags: # tags:
- ubuntu-gcc-cached # - ubuntu-gcc-cached
variables: # variables:
GIT_SUBMODULE_STRATEGY: recursive # GIT_SUBMODULE_STRATEGY: recursive
timeout: 15m # timeout: 15m
retry: 1 # retry: 1
script: # script:
- mkdir debug # - mkdir debug
- cd debug # - cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug .. # - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . -j 4 # - cmake --build . -j 4
artifacts: # artifacts:
name: "Documentation - $CI_PIPELINE_ID" # name: "Documentation - $CI_PIPELINE_ID"
paths: # paths:
- doc/html # - doc/html
- doc/latex # - doc/latex
expire_in: never # expire_in: never
build_win10_msvc: # build_win10_msvc:
only: # only:
variables: # variables:
- $RUN =~ /\bwin-msvc.*/i || $RUN =~ /\ball.*/i # - $RUN =~ /\bwin-msvc.*/i || $RUN =~ /\ball.*/i
stage: build # stage: build
tags: # tags:
- win10-msvc-cached # - win10-msvc-cached
variables: # variables:
GIT_SUBMODULE_STRATEGY: recursive # GIT_SUBMODULE_STRATEGY: recursive
timeout: 15m # timeout: 15m
retry: 0 # retry: 0
script: # script:
- cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\' # - cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
- .\Launch-VsDevShell.ps1 # - .\Launch-VsDevShell.ps1
- cd $CI_PROJECT_DIR # - cd $CI_PROJECT_DIR
- mkdir debug # - mkdir debug
- cd debug # - cd debug
- cmake -DCMAKE_BUILD_TYPE=Debug .. # - cmake -DCMAKE_BUILD_TYPE=Debug ..
- cmake --build . -j 4 # - cmake --build . -j 4
# build_win10_mingw: # build_win10_mingw:
# only: # only:
......
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