Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CMake Recipes
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
Model registry
Operate
Environments
Monitor
Incidents
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
mpcdf
training
CMake Recipes
Compare revisions
0a52a6b74360a94933f12135a0f9a9b51b953b42 to 3bba87f0939bed9a595f0e9553d3dc3aa540357b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
mpcdf/training/cmake-recipes
Select target project
No results found
3bba87f0939bed9a595f0e9553d3dc3aa540357b
Select Git revision
Branches
main
Swap
Target
mpcdf/training/cmake-recipes
Select target project
mpcdf/training/cmake-recipes
seibl/cmake-recipes
2 results
0a52a6b74360a94933f12135a0f9a9b51b953b42
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
fixes need for change to new ci module images
· 565ec393
Sebastian Eibl
authored
9 months ago
565ec393
fix link checker
· f6d77f89
Sebastian Eibl
authored
9 months ago
f6d77f89
Merge branch 'update_to_module_images' into 'main'
· 3bba87f0
Sebastian Eibl
authored
9 months ago
update to module images See merge request
!6
3bba87f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+6
-5
6 additions, 5 deletions
.gitlab-ci.yml
01_third_party_libraries/CMakeLists.txt
+3
-3
3 additions, 3 deletions
01_third_party_libraries/CMakeLists.txt
with
9 additions
and
8 deletions
.gitlab-ci.yml
View file @
3bba87f0
image
:
gitlab-registry.mpcdf.mpg.de/mpcdf/module-image
image
:
gitlab-registry.mpcdf.mpg.de/mpcdf/
ci-
module-image
/intel_2024_0-impi_2021_11:2024
check-recipes
:
before_script
:
-
zypper install -y doxygen
-
module purge
-
module load cmake
/3.24 doxygen git
-
module load intel/2
1.5.0
-
module load cmake
-
module load intel/2
024.0 impi/2021.11
-
module load gsl
-
module list
-
cmake --version
...
...
@@ -72,11 +73,11 @@ check-recipes:
check-links
:
before_script
:
-
module purge
-
module load anaconda/3/202
1.11
-
module load anaconda/3/202
3.03
-
module list
-
pip3 install linkcheckmd
script
:
-
/root/.local/bin/
linkcheckMarkdown -vr .
-
linkcheckMarkdown -vr .
This diff is collapsed.
Click to expand it.
01_third_party_libraries/CMakeLists.txt
View file @
3bba87f0
...
...
@@ -7,9 +7,9 @@ find_package(OpenMP REQUIRED)
set
(
MKL_ARCH intel64
)
set
(
MKL_LINK dynamic
)
set
(
MKL_THREADING
intel_thread
)
set
(
MKL_INTERFACE lp64
)
set
(
MKL_MPI
open
mpi
)
set
(
MKL_THREADING
sequential
)
set
(
MKL_INTERFACE
i
lp64
)
set
(
MKL_MPI
intel
mpi
)
find_package
(
MKL REQUIRED
)
add_executable
(
main
)
...
...
This diff is collapsed.
Click to expand it.