Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 20 additions & 27 deletions .github/workflows/key4hep.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
name: key4hep
name: Key4hep build

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
linux:
runs-on: ubuntu-latest
build:
strategy:
fail-fast: false
matrix:
include:
- release: "sw.hsf.org/key4hep"
CXX_STANDARD: 17
- release: "sw-nightlies.hsf.org/key4hep"
CXX_STANDARD: 20
build_type: ["release", "nightly"]
image: ["alma9", "ubuntu22"]
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cvmfs-contrib/github-action-cvmfs@v3
- uses: aidasoft/run-lcg-view@v4
- uses: actions/checkout@v4
- uses: key4hep/key4hep-actions/key4hep-build@main
with:
container: centos7
view-path: /cvmfs/${{ matrix.release }}
run: |
mkdir build install
cd build
cmake -DCMAKE_CXX_STANDARD=${{ matrix.CXX_STANDARD }} \
-DCMAKE_CXX_FLAGS="-fdiagnostics-color=always " \
-DCMAKE_INSTALL_PREFIX=../install \
-DINSTALL_DOC=ON \
-GNinja \
..
ninja -k0
ctest --output-on-failure
ninja install
build_type: ${{ matrix.build_type }}
image: ${{ matrix.image }}
26 changes: 0 additions & 26 deletions .github/workflows/linux.yml

This file was deleted.

2 changes: 1 addition & 1 deletion source/src/DBInterface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ namespace lccd {
{
condTagMgr()->createCondDBTag( tag, description ) ;
}
catch ( CondDBException condbexc )
catch ( CondDBException& condbexc )
{
// std::cout << " WARNING: DBInterface::tagFolder: "<<condbexc.getMessage() << std::endl;
}
Expand Down
Loading