Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
d67fac52
There was an error fetching the commit references. Please try again later.
Commit
d67fac52
authored
6 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
CI: reorder jobs to better utilize concurrent execution
parent
3d81c3aa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+27
-25
27 additions, 25 deletions
.gitlab-ci.yml
with
27 additions
and
25 deletions
.gitlab-ci.yml
+
27
−
25
View file @
d67fac52
...
...
@@ -60,12 +60,11 @@ stages:
-DWITH_EXAMPLES=${WITH_EXAMPLES}
-DWITH_TOOLS=${WITH_TOOLS}
-DWITH_PYTHON=${WITH_PYTHON}
# - make
# - make test
# "install" implies the "all" target
# - make install
-
ninja ${NINJAFLAGS}
# - make test
-
ninja ${NINJAFLAGS} install
-
ninja test
-
ninja install
-
popd
variables
:
<<
:
*default_cmake_flags
...
...
@@ -73,15 +72,23 @@ stages:
# Cuda builds are specified first because they take more time than host-only builds,
# which can be allocated on hosts whitout GPUs.
# Similarly, release builds are launched first to avoid the tail effect (they take
# significantly more time than debug builds).
cuda_
base_Debug
:
cuda_
full_Release
:
<<
:
*build_template
tags
:
-
openmp
-
gpu
variables
:
<<
:
*default_cmake_flags
WITH_OPENMP
:
"
yes"
WITH_CUDA
:
"
yes"
BUILD_TYPE
:
Debug
BUILD_TYPE
:
Release
WITH_BENCHMARKS
:
"
yes"
WITH_EXAMPLES
:
"
yes"
WITH_TOOLS
:
"
yes"
WITH_PYTHON
:
"
yes"
cuda_base_Release
:
<<
:
*build_template
...
...
@@ -92,19 +99,6 @@ cuda_base_Release:
WITH_CUDA
:
"
yes"
BUILD_TYPE
:
Release
cuda_mpi_Debug
:
<<
:
*build_template
tags
:
-
openmp
-
gpu
-
mpi
variables
:
<<
:
*default_cmake_flags
WITH_OPENMP
:
"
yes"
WITH_CUDA
:
"
yes"
WITH_MPI
:
"
yes"
BUILD_TYPE
:
Debug
cuda_mpi_Release
:
<<
:
*build_template
tags
:
...
...
@@ -133,20 +127,28 @@ cuda_full_Debug:
WITH_TOOLS
:
"
yes"
WITH_PYTHON
:
"
yes"
cuda_full_Release
:
cuda_base_Debug
:
<<
:
*build_template
tags
:
-
gpu
variables
:
<<
:
*default_cmake_flags
WITH_CUDA
:
"
yes"
BUILD_TYPE
:
Debug
cuda_mpi_Debug
:
<<
:
*build_template
tags
:
-
openmp
-
gpu
-
mpi
variables
:
<<
:
*default_cmake_flags
WITH_OPENMP
:
"
yes"
WITH_CUDA
:
"
yes"
BUILD_TYPE
:
Release
WITH_BENCHMARKS
:
"
yes"
WITH_EXAMPLES
:
"
yes"
WITH_TOOLS
:
"
yes"
WITH_PYTHON
:
"
yes"
WITH_MPI
:
"
yes"
BUILD_TYPE
:
Debug
default_base_Debug
:
<<
:
*build_template
...
...
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