Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
deployment
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
Container registry
Model registry
Operate
Environments
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
delphi
deployment
Commits
788e3f51
Commit
788e3f51
authored
2 years ago
by
Ulrich Schwickerath
Browse files
Options
Downloads
Patches
Plain Diff
--amend
parent
5769cada
No related branches found
No related tags found
1 merge request
!12
version CERNLIB
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
install/Makefile
+2
-2
2 additions, 2 deletions
install/Makefile
install/scripts/check_install
+19
-1
19 additions, 1 deletion
install/scripts/check_install
install/scripts/check_install_nodelgra
+19
-1
19 additions, 1 deletion
install/scripts/check_install_nodelgra
with
40 additions
and
4 deletions
install/Makefile
+
2
−
2
View file @
788e3f51
...
...
@@ -78,8 +78,8 @@ cernlib: profiles logs
$(
eval export
CERN
=
$(
shell
set
-x
;
DELPHI_INSTALL_DIR
=
$(
DELPHI_INSTALL_DIR
)
source
./delphi.sh
;
echo
${
CERN
}))
echo
"starting cernlib"
mkdir
-p
$(
CERN
)
./make_cernlib
$(
CERN
)
$(
CERNVER
)
$(
LEGACY
)
0
>
logs/make_cernlib-imake.log 2>&1
||
(
cat
logs/make_cernlib-imake.log
;
/bin/false
)
./make_cernlib
$(
CERN
)
$(
CERNVER
)
$(
LEGACY
)
1
>
logs/make_cernlib-cmake.log 2>&1
||
(
cat
logs/make_cernlib-cmake.log
;
/bin/false
)
./make_cernlib
$(
CERN
)
$(
CERNVER
)
0
$(
LEGACY
)
>
logs/make_cernlib-imake.log 2>&1
||
(
cat
logs/make_cernlib-imake.log
;
/bin/false
)
./make_cernlib
$(
CERN
)
$(
CERNVER
)
1
$(
LEGACY
)
>
logs/make_cernlib-cmake.log 2>&1
||
(
cat
logs/make_cernlib-cmake.log
;
/bin/false
)
dstana_pre
:
profiles setup logs
./make_dstana
$(
NEW
)
$(
DELPHI_SWCD
)
$(
DELPHI_INSTALL_DIR
)
>
logs/make_dstana_
$(
NEW
)
.log 2>&1
||
(
cat
logs/make_dstana_
$(
NEW
)
.log
;
/bin/false
)
...
...
This diff is collapsed.
Click to expand it.
install/scripts/check_install
+
19
−
1
View file @
788e3f51
...
...
@@ -2,8 +2,26 @@
rc
=
0
;
if
[[
!
-z
"
${
GROUP_DIR
}
"
]]
;
then
cd
delphi
epawx11
=
2
# check Motif CERN apps
fpawx11
=
`
find
.
-name
pawX11 |
wc
-l
`
if
[
"x
$epawx11
"
=
"x
$fpawx11
"
]
;
then
echo
"pawX11 has been correctly created"
else
echo
"pawX11 is missing."
rc
=
2
fi
epawpp
=
2
# check Motif CERN apps
fpawpp
=
`
find
.
-name
paw++ |
wc
-l
`
if
[
"x
$epawpp
"
=
"x
$fpawpp
"
]
;
then
echo
"paw++ has been correctly created"
else
echo
"paw++ is missing."
rc
=
2
fi
# count testing libraries
elibs
=
4
42
elibs
=
4
71
flibs
=
`
find
.
-name
\*
.a |
wc
-l
`
if
[
"x
$elibs
"
=
"x
$flibs
"
]
;
then
echo
"All expected
$elibs
libraries have been created"
...
...
This diff is collapsed.
Click to expand it.
install/scripts/check_install_nodelgra
+
19
−
1
View file @
788e3f51
...
...
@@ -2,8 +2,26 @@
rc
=
0
;
if
[[
!
-z
"
${
GROUP_DIR
}
"
]]
;
then
cd
$GROUP_DIR
epawx11
=
2
# check Motif CERN apps
fpawx11
=
`
find
.
-name
pawX11 |
wc
-l
`
if
[
"x
$epawx11
"
=
"x
$fpawx11
"
]
;
then
echo
"pawX11 has been correctly created"
else
echo
"pawX11 is missing."
rc
=
2
fi
epawpp
=
2
# check Motif CERN apps
fpawpp
=
`
find
.
-name
paw++ |
wc
-l
`
if
[
"x
$epawpp
"
=
"x
$fpawpp
"
]
;
then
echo
"paw++ has been correctly created"
else
echo
"paw++ is missing."
rc
=
2
fi
# count testing libraries
elibs
=
4
3
6
elibs
=
46
5
flibs
=
`
find
.
-name
\*
.a |
wc
-l
`
if
[
"x
$elibs
"
=
"x
$flibs
"
]
;
then
echo
"All expected
$elibs
libraries have been created"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment