Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
GeoModelDev
GeoModel
Merge requests
!413
Draft: Athena CI 2025
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Athena CI 2025
athena-ci-2025
into
main
Overview
0
Commits
8
Pipelines
9
Changes
2
Open
Paul Gessinger
requested to merge
athena-ci-2025
into
main
2 months ago
Overview
0
Commits
8
Pipelines
9
Changes
2
Expand
0
0
Merge request reports
Compare
main
version 7
ccc2127e
2 months ago
version 6
daaab75d
2 months ago
version 5
60b7c8fc
2 months ago
version 4
815374d7
2 months ago
version 3
49e20ac4
2 months ago
version 2
2f9c7976
2 months ago
version 1
f742d351
2 months ago
main (HEAD)
and
latest version
latest version
c7c67640
8 commits,
2 months ago
version 7
ccc2127e
7 commits,
2 months ago
version 6
daaab75d
6 commits,
2 months ago
version 5
60b7c8fc
5 commits,
2 months ago
version 4
815374d7
4 commits,
2 months ago
version 3
49e20ac4
3 commits,
2 months ago
version 2
2f9c7976
2 commits,
2 months ago
version 1
f742d351
1 commit,
2 months ago
2 files
+
33
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
athena_ci/ci.yml
+
33
−
21
Options
@@ -2,14 +2,14 @@ build_geomodel_athena:
image
:
gitlab-registry.cern.ch/atlas-sit/docker/alma9-atlasos-dev
stage
:
step-A
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "merge_request_event"
changes
:
-
GeoModelCore/**/*
-
GeoModelIO/**/*
-
GeoModelTools/**/*
-
cmake/**/*
-
CMakeLists.txt
#
rules:
#
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
#
changes:
#
- GeoModelCore/**/*
#
- GeoModelIO/**/*
#
- GeoModelTools/**/*
#
- cmake/**/*
#
- CMakeLists.txt
variables
:
CCACHE_KEY_SUFFIX
:
r2
@@ -34,10 +34,7 @@ build_geomodel_athena:
artifacts
:
paths
:
-
geomodel-install
# - athena-build
-
athena-install
-
.asetup.save
-
build
expire_in
:
4 hours
before_script
:
@@ -46,12 +43,28 @@ build_geomodel_athena:
script
:
-
git config --global user.name gitlab
-
git config --global user.email cijob@example.com
-
echo $CI_MERGE_REQUEST_PROJECT_ID
-
echo $CI_MERGE_REQUEST_IID
-
export HEADERS_CHANGED=$(curl -s https://gitlab.cern.ch/api/v4/projects/${CI_MERGE_REQUEST_PROJECT_ID}/merge_requests/${CI_MERGE_REQUEST_IID}/changes | jq -r .changes[].new_path | grep -e "\.h$" > /dev/null ; printf $?)
-
export IS_MERGE_REQUEST=$([ $CI_PIPELINE_SOURCE = "merge_request_event" ]; printf $?)
-
athena_ci/athena_build.sh
-
git config --global --add safe.directory /builds/GeoModelDev/GeoModel
# @TODO: Change to tag or something
-
git clone https://gitlab.cern.ch/acts/acts-athena-ci.git -b new-outer-script acts-athena-ci
# @TODO: Add custom patches folder to be applied
-
>-
acts-athena-ci/build.py
--directory build
--athena-ref ${ATHENA_REF}
--athena-repo ${ATHENA_GIT_REPO}
--athena-release ${ATHENA_RELEASE}
--acts-repo https://github.com/acts-project/acts.git
--acts-ref auto
--build-geomodel
--geomodel-source $PWD
--add-package-filters athena_ci/package_filters.txt
--jobs 8
--jobs-athena 4
-
rm -rf build/acts-build build/athena-build build/geomodel-build
.run_base
:
stage
:
step-B
@@ -109,9 +122,8 @@ build_geomodel_athena:
../athena_ci/apply_patches.sh
popd
-
source athena-install/setup.sh
-
export LD_LIBRARY_PATH=$PWD/geomodel-install/lib64:$LD_LIBRARY_PATH
-
mkdir -p run
-
source build/setup.sh
-
mkdir run
################################################
Loading