Skip to content
Snippets Groups Projects
Commit edf05d58 authored by Carsten Lemmen's avatar Carsten Lemmen
Browse files

Updated cmake workflow

parent 41cbb39f
No related branches found
No related tags found
No related merge requests found
# 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"
......@@ -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 }}
......@@ -8,6 +8,7 @@ on:
push:
branches:
- main
- gmp
pull_request:
branches:
- main
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment