Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vite
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
Container registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
vite
Merge requests
!30
Split the CI into multiple files and add coverity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Split the CI into multiple files and add coverity
ci/split
into
master
Overview
0
Commits
2
Pipelines
12
Changes
12
Merged
Mathieu Faverge
requested to merge
ci/split
into
master
3 years ago
Overview
0
Commits
2
Pipelines
12
Changes
12
Expand
0
0
Merge request reports
Compare
master
version 8
dad1402a
3 years ago
version 7
a2deddb1
3 years ago
version 6
73c5ad34
3 years ago
version 5
8154e281
3 years ago
version 4
94536223
3 years ago
version 3
c6b96ce6
3 years ago
version 2
f35d8be9
3 years ago
version 1
a8db41f5
3 years ago
master (base)
and
latest version
latest version
feb1c552
2 commits,
3 years ago
version 8
dad1402a
2 commits,
3 years ago
version 7
a2deddb1
2 commits,
3 years ago
version 6
73c5ad34
1 commit,
3 years ago
version 5
8154e281
1 commit,
3 years ago
version 4
94536223
4 commits,
3 years ago
version 3
c6b96ce6
3 commits,
3 years ago
version 2
f35d8be9
2 commits,
3 years ago
version 1
a8db41f5
1 commit,
3 years ago
12 files
+
472
−
70
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
.gitlab/build.yml
0 → 100644
+
39
−
0
Options
---
.build_vite_template
:
&build_vite
stage
:
build
tags
:
[
"
docker"
]
interruptible
:
true
artifacts
:
name
:
vite_build_with_${NAME}
expire_in
:
42 minutes
untracked
:
true
script
:
-
git submodule update --init --recursive
-
mkdir -p build
-
cd build
-
cmake -DVITE_CI_BRANCH=branch
-C ../.gitlab/ci-test-initial-cache.cmake ..
-
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ${BUILD_OPTIONS}
-
make | tee ../vite-build-with-${NAME}.log
-
make install | tee -a ../vite-build-with-${NAME}
only
:
-
merge_requests
-
master@solverstack/vite
build_vite_with_opengl
:
<<
:
*build_vite
variables
:
BUILD_OPTIONS
:
"
-DUSE_OPENGL=ON
-DVITE_ENABLE_VBO=OFF"
NAME
:
opengl
build_vite_with_vbo
:
<<
:
*build_vite
variables
:
BUILD_OPTIONS
:
"
-DUSE_OPENGL=ON
-DVITE_ENABLE_VBO=ON"
NAME
:
vbo
build_vite_with_vulkan
:
<<
:
*build_vite
variables
:
BUILD_OPTIONS
:
"
-DUSE_VULKAN=ON"
NAME
:
vulkan
Loading