Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Installer
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
cms-analysis
General
DasAnalysisSystem
Installer
Merge requests
!34
Migration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Migration
migration
into
master
Overview
31
Commits
57
Pipelines
13
Changes
25
Merged
Louis Moureaux
requested to merge
migration
into
master
9 months ago
Overview
31
Commits
57
Pipelines
13
Changes
25
Expand
+700 net lines, good luck to the reviewer.
0
0
Merge request reports
Compare
master
version 12
541cf463
8 months ago
version 11
398ca190
8 months ago
version 10
516457a7
8 months ago
version 9
edda63e3
8 months ago
version 8
0c3d65ba
8 months ago
version 7
169576b7
8 months ago
version 6
b20f07f0
8 months ago
version 5
3a2804bb
8 months ago
version 4
50dfaa56
8 months ago
version 3
46747870
8 months ago
version 2
7cb175af
9 months ago
version 1
5fd300bf
9 months ago
master (base)
and
latest version
latest version
37da14b9
57 commits,
8 months ago
version 12
541cf463
55 commits,
8 months ago
version 11
398ca190
56 commits,
8 months ago
version 10
516457a7
56 commits,
8 months ago
version 9
edda63e3
58 commits,
8 months ago
version 8
0c3d65ba
49 commits,
8 months ago
version 7
169576b7
45 commits,
8 months ago
version 6
b20f07f0
43 commits,
8 months ago
version 5
3a2804bb
41 commits,
8 months ago
version 4
50dfaa56
39 commits,
8 months ago
version 3
46747870
34 commits,
8 months ago
version 2
7cb175af
32 commits,
9 months ago
version 1
5fd300bf
30 commits,
9 months ago
25 files
+
1079
−
195
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
25
Search (e.g. *.vue) (Ctrl+P)
CMS/scripts/das-cmssw
0 → 100755
+
39
−
0
Options
#!/usr/bin/env bash
if
[[
$#
-lt
2
]]
;
then
echo
"
$0
image command [args]"
>
&2
exit
2
fi
img
=
$1
shift
# rm first element of $@
case
"
$img
"
in
*
cc7
)
export
CMSSW_VERSION
=
CMSSW_10_6_30
;;
*
el8
)
export
CMSSW_VERSION
=
CMSSW_12_4_0
;;
*
)
tput setaf 1
echo
"Unknown Linux version. Abort."
tput op
exit
1
;;
esac
$img
<<
'
SCRIPT
' -s
$CMSSW_VERSION
"
$@
"
CMSSW_VERSION=
$1
shift
function source_CMS_setup() { source
$DAS_BASE
/CMS/setup > /dev/null ; }
source_CMS_setup
if [ ! -d
$DAS_BASE
/
$CMSSW_VERSION
]; then
echo "
$CMSSW_VERSION
could not be found. Are you sure that it has been installed?"
exit 1
fi
cd
$DAS_BASE
/
$CMSSW_VERSION
eval
$(
scram runtime
-sh
)
# cmsenv
cd - > /dev/null
"
$@
"
SCRIPT
Loading