Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gaudi
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
10
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
atlas
Gaudi
Merge requests
!64
GMR-210
: Improvements to gitlab-ci config
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GMR-210
: Improvements to gitlab-ci config
leggett/AtlasGaudi:dev/GMR-210
into
atlas/v27r2
Overview
0
Commits
8
Changes
1
Merged
Charles Leggett
requested to merge
leggett/AtlasGaudi:dev/GMR-210
into
atlas/v27r2
8 years ago
Overview
0
Commits
8
Changes
1
Expand
apply Gaudi Merge Request 210:
gaudi/Gaudi!210 (merged)
Improvements to gitlab-ci config
split the build in stages
added test to the already present build and doc
👍
0
👎
0
Merge request reports
Compare
atlas/v27r2
atlas/v27r2 (base)
and
latest version
latest version
a24cfed3
8 commits,
8 years ago
1 file
+
31
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
31
−
4
Options
before_script
:
-
. /
afs/cern.ch/lhcb/software/releases/LBSCRIPTS/dev/InstallArea/scripts
/LbLogin.sh
-
. /
cvmfs/lhcb.cern.ch/lib
/LbLogin.sh
-
unset VERBOSE
-
export PATH=/
afs/
cern.ch/
sw/lcg
/contrib/ninja/1.4.0/x86_64-slc6:${PATH}
-
e
cho 'set(CMAKE_USE_CCACHE ON CACHE BOOL "")' >> cache_preload.cmake
-
export PATH=/
cvmfs/lhcb.
cern.ch/
lib
/contrib/ninja/1.4.0/x86_64-slc6:${PATH}
-
e
xport CMAKE_PREFIX_PATH=/cvmfs/sft.cern.ch/lcg/releases
doxygen
:
build
:
stage
:
build
script
:
-
echo 'set(CMAKE_USE_CCACHE ON CACHE BOOL "")' >> cache_preload.cmake
-
make
-
mv build.${CMTCONFIG} build
tags
:
-
slc6
artifacts
:
paths
:
-
build/
doxygen
:
stage
:
test
script
:
-
mv build build.${CMTCONFIG}
-
make doc
-
mv build.${CMTCONFIG}/doxygen .
tags
:
-
slc6
artifacts
:
paths
:
-
doxygen/
test
:
stage
:
test
script
:
-
mv build build.${CMTCONFIG}
-
make test ARGS='-j4'
-
mv build.${CMTCONFIG}/html test_report
tags
:
-
slc6
artifacts
:
paths
:
-
test_report/
Loading