Skip to content

Commit

Permalink
ci: Add LCG 106a job (acts-project#3918)
Browse files Browse the repository at this point in the history
This adds jobs for LCG 106a to the GitLab CI.

I'm bumping ODD to the [`v4.0.3`](https://gitlab.cern.ch/acts/OpenDataDetector/-/tags/v4.0.3) where I cherry picked a tiny code fix that was breaking the build here.

Blocked by:
- acts-project#3921 

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit

- **New Features**
	- Introduced a new CI/CD job `lcg_106a` for enhanced build configurations.
- **Improvements**
	- Simplified the `lcg_105` job by directly setting `LCG_PLATFORM` for the `alma9` OS.
- **Updates**
	- Updated the commit reference for the `OpenDataDetector` subproject to the latest version.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
paulgessinger authored Nov 29, 2024
1 parent eb6a5f1 commit 6a836db
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
20 changes: 15 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,11 +382,7 @@ linux_ubuntu_2204_clang:
# Figure out LCG platform name based on version number and OS
- >
if [ "$OS" = "alma9" ]; then
if [ "$LCG_VERSION" -ge "104" ]; then
export LCG_PLATFORM="el9"
else
export LCG_PLATFORM="centos9"
fi
export LCG_PLATFORM="el9"
else
export LCG_PLATFORM="$OS"
fi
Expand Down Expand Up @@ -431,3 +427,17 @@ lcg_105:
COMPILER:
- gcc13
- clang16

lcg_106a:
extends: .lcg_base_job

variables:
LCG_VERSION: "106a"

parallel:
matrix:
- OS: [alma9]
COMPILER:
- gcc13
- gcc14
- clang16
2 changes: 1 addition & 1 deletion thirdparty/OpenDataDetector
Submodule OpenDataDetector updated from 0bf11f to 4c5e74

0 comments on commit 6a836db

Please sign in to comment.