Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OxyPOM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ElbeXtreme
OxyPOM
Commits
edf05d58
Commit
edf05d58
authored
1 week ago
by
Carsten Lemmen
Browse files
Options
Downloads
Patches
Plain Diff
Updated cmake workflow
parent
41cbb39f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.github/dependabot.yaml
+10
-0
10 additions, 0 deletions
.github/dependabot.yaml
.github/workflows/cmake-multi-platform.yaml
+15
-5
15 additions, 5 deletions
.github/workflows/cmake-multi-platform.yaml
.github/workflows/fabm.yaml
+1
-0
1 addition, 0 deletions
.github/workflows/fabm.yaml
with
26 additions
and
5 deletions
.github/dependabot.yaml
0 → 100644
+
10
−
0
View file @
edf05d58
# SPDX-FileCopyrightText: 2022-2025 Helmholtz-Zentrum hereon GmbH
# SPDX-License-Identifier: CC0-1.0
# SPDX-FileContributor: Carsten Lemmen <carsten.lemmen@hereon.de
version
:
2
updates
:
-
package-ecosystem
:
"
github-actions"
directory
:
"
/"
schedule
:
interval
:
"
weekly"
This diff is collapsed.
Click to expand it.
.github/workflows/cmake-multi-platform.yaml
+
15
−
5
View file @
edf05d58
...
...
@@ -10,7 +10,7 @@ on:
push
:
branches
:
[
"
gmp"
]
pull_request
:
branches
:
[
"
gmp
"
]
branches
:
[
"
main
"
]
jobs
:
build
:
...
...
@@ -49,7 +49,14 @@ jobs:
c_compiler
:
cl
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Checkout external repository dummy1
run
:
|
GOTMDIR=$(mktemp -d)
git clone --depth=1 --branch=v6.0.7 --recurse-submodules https://github.com/gotm-model/code.git "$GOTMDIR"
echo "GOTMDIR=$GOTMDIR" >> $GITHUB_ENV
-
name
:
Checkout oxypom repository
uses
:
actions/checkout@v4
-
name
:
Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
...
...
@@ -62,12 +69,15 @@ jobs:
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run
:
>
cmake -B ${{ steps.strings.outputs.build-output-dir }}
cmake
-S ${GOTMDIR}
-B ${{ steps.strings.outputs.build-output-dir }}
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_Fortran_COMPILER=${{ matrix.f_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-
S
${{ github.workspace }}
-
DGOTM_USE_FABM=ON -DFABM_EXTRA_INSTITUTES=OXYPOM -DFABM_OXYPOM_BASE=
${{ github.workspace }}
/src
-
name
:
Build
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
run
:
cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
run
:
>
cmake --B ${{ steps.strings.outputs.build-output-dir }}
-build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
This diff is collapsed.
Click to expand it.
.github/workflows/fabm.yaml
+
1
−
0
View file @
edf05d58
...
...
@@ -8,6 +8,7 @@ on:
push
:
branches
:
-
main
-
gmp
pull_request
:
branches
:
-
main
...
...
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