Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VkCV Framework
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vulkan2021
VkCV Framework
Commits
cd662606
Verified
Commit
cd662606
authored
3 years ago
by
Josch Morgenstern
Browse files
Options
Downloads
Patches
Plain Diff
remove gitlab-ci.yml
parent
2307f874
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!103
Added project wobble_bobble and refactored some parts of the framework
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+0
-125
0 additions, 125 deletions
.gitlab-ci.yml
with
0 additions
and
125 deletions
.gitlab-ci.yml
deleted
100644 → 0
+
0
−
125
View file @
2307f874
variables
:
RUN
:
value
:
"
all"
description
:
"
The
tests
that
should
run.
Possible
values:
ubuntu,
win-msvc,
win-mingw,
mac,
all."
GIT_DEPTH
:
15
stages
:
-
build
-
deploy
# build_ubuntu_gcc:
# only:
# variables:
# - $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
# stage: build
# tags:
# - ubuntu-gcc-cached
# variables:
# GIT_SUBMODULE_STRATEGY: recursive
# timeout: 15m
# retry: 1
# script:
# - mkdir debug
# - cd debug
# - cmake -DCMAKE_BUILD_TYPE=Debug ..
# - cmake --build . -j 4
# artifacts:
# name: "Documentation - $CI_PIPELINE_ID"
# paths:
# - doc/html
# - doc/latex
# expire_in: never
# build_win10_msvc:
# only:
# variables:
# - $RUN =~ /\bwin-msvc.*/i || $RUN =~ /\ball.*/i
# stage: build
# tags:
# - win10-msvc-cached
# variables:
# GIT_SUBMODULE_STRATEGY: recursive
# timeout: 15m
# retry: 0
# script:
# - cd 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\'
# - .\Launch-VsDevShell.ps1
# - cd $CI_PROJECT_DIR
# - mkdir debug
# - cd debug
# - cmake -DCMAKE_BUILD_TYPE=Debug ..
# - cmake --build . -j 4
# build_win10_mingw:
# only:
# variables:
# - $RUN =~ /\bwin-mingw.*/i || $RUN =~ /\ball.*/i
# stage: build
# tags:
# - win10-mingw-cached
# variables:
# GIT_SUBMODULE_STRATEGY: recursive
# timeout: 15m
# retry: 0
# script:
# - mkdir debug
# - cd debug
# - cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_C_COMPILER:FILEPATH=C:\msys64\mingw64\bin\x86_64-w64-mingw32-gcc.exe -DCMAKE_CXX_COMPILER:FILEPATH=C:\msys64\mingw64\bin\x86_64-w64-mingw32-g++.exe .. -G "Unix Makefiles"
# - cmake --build . -j 4
# build_mac_clang:
# only:
# variables:
# - $RUN =~ /\bmac.*/i || $RUN =~ /\ball.*/i
# stage: build
# tags:
# - catalina-clang-cached
# variables:
# GIT_SUBMODULE_STRATEGY: recursive
# timeout: 15m
# retry: 1
# script:
# - mkdir debug
# - cd debug
# - export LDFLAGS="-L/usr/local/opt/llvm/lib"
# - export CPPFLAGS="-I/usr/local/opt/llvm/include"
# - cmake -DCMAKE_C_COMPILER="/usr/local/opt/llvm/bin/clang" -DCMAKE_CXX_COMPILER="/usr/local/opt/llvm/bin/clang++" -DCMAKE_BUILD_TYPE=Debug ..
# - cmake --build . -j 4
# deploy_doc_develop:
# only:
# variables:
# - $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
# refs:
# - develop
# stage: deploy
# needs: ["build_ubuntu_gcc"]
# dependencies:
# - build_ubuntu_gcc
# tags:
# - webserver
# variables:
# GIT_STRATEGY: none
# script:
# - rsync -avh doc/html/ /var/www/html/develop --delete
# - echo "Check it out at https://vkcv.de/develop"
# deploy_doc_branch:
# only:
# variables:
# - $RUN =~ /\bubuntu.*/i || $RUN =~ /\ball.*/i
# except:
# refs:
# - develop
# stage: deploy
# needs: ["build_ubuntu_gcc"]
# dependencies:
# - build_ubuntu_gcc
# tags:
# - webserver
# variables:
# GIT_STRATEGY: none
# script:
# - rsync -avh doc/html/ /var/www/html/branch/$CI_COMMIT_BRANCH --delete
# - echo "Check it out at https://vkcv.de/branch/$CI_COMMIT_BRANCH"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment