Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
ip6
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
detectors
ip6
Merge requests
!119
feat: test lcg overlap check
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: test lcg overlap check
lcg-check-overlaps
into
master
Overview
0
Commits
5
Pipelines
7
Changes
1
Merged
Wouter Deconinck
requested to merge
lcg-check-overlaps
into
master
2 years ago
Overview
0
Commits
5
Pipelines
7
Changes
1
Expand
This should catch issues that might be shadowed by our use of eic-shell in other tests.
0
0
Merge request reports
Compare
master
version 6
f1b03ec1
2 years ago
version 5
b693be37
2 years ago
version 4
f1f24755
2 years ago
version 3
329304e6
2 years ago
version 2
b222a320
2 years ago
version 1
dacc95dc
2 years ago
master (base)
and
latest version
latest version
1fca6640
5 commits,
2 years ago
version 6
f1b03ec1
4 commits,
2 years ago
version 5
b693be37
6 commits,
2 years ago
version 4
f1f24755
3 commits,
2 years ago
version 3
329304e6
2 commits,
2 years ago
version 2
b222a320
2 commits,
2 years ago
version 1
dacc95dc
1 commit,
2 years ago
1 file
+
11
−
22
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.github/workflows/linux-lcg.yml
+
11
−
22
Options
@@ -3,13 +3,12 @@ name: linux-lcg
on
:
[
push
,
pull_request
]
jobs
:
ubuntu-2004
:
build-lcg-
ubuntu-2004
:
runs-on
:
ubuntu-20.04
strategy
:
fail-fast
:
false
matrix
:
LCG
:
[
"
LCG_101/x86_64-ubuntu2004-gcc9-opt"
,
"
LCG_99/x86_64-ubuntu2004-gcc9-opt"
]
LCG
:
[
"
LCG_101/x86_64-ubuntu2004-gcc9-opt"
]
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
cvmfs-contrib/github-action-cvmfs@v2
@@ -19,24 +18,14 @@ jobs:
with
:
release-platform
:
${{ matrix.LCG }}
run
:
|
cmake -B build -S .
PREFIX=install
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
ubuntu-2204
:
runs-on
:
ubuntu-22.04
strategy
:
fail-fast
:
false
matrix
:
LCG
:
[
"
LCG_101/x86_64-ubuntu2004-gcc9-opt"
,
"
LCG_99/x86_64-ubuntu2004-gcc9-opt"
]
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
cvmfs-contrib/github-action-cvmfs@v2
# check geometry
source ${PREFIX}/setup.sh
checkGeometry -c ${BEAMLINE_PATH}/${BEAMLINE}.xml
-
uses
:
actions/upload-artifact@v3
with
:
cvmfs_repositories
:
'
sft.cern.ch,geant4.cern.ch'
-
uses
:
aidasoft/run-lcg-view@v1
with
:
release-platform
:
${{ matrix.LCG }}
run
:
|
cmake -B build -S .
cmake --build build -- install
name
:
build-lcg-ubuntu2004
path
:
install/
if-no-files-found
:
error
Loading