Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review 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
RadioObservatory
LOFAR
Commits
dca33075
Commit
dca33075
authored
9 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #8598: do not build for lotar anymore
parent
21be636a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LTA/LTAIngest/ltaingest_build.sh
+2
-7
2 additions, 7 deletions
LTA/LTAIngest/ltaingest_build.sh
with
2 additions
and
7 deletions
LTA/LTAIngest/ltaingest_build.sh
+
2
−
7
View file @
dca33075
...
...
@@ -4,9 +4,9 @@
if
[
"$#"
-ne
1
]
;
then
echo
"Usage: ./ltaingest_build.sh <tag>"
echo
"where tag is a name or version number which is added to the tarballs."
echo
"This script creates t
hree
build flavours (test/lexar
/lotar
) in source_root_dir/build and builds LTAIngest"
echo
"This script creates t
wo
build flavours (test/lexar) in source_root_dir/build and builds LTAIngest"
echo
"Then it performs a local install (in the each specific build dir) and creates a deployable tarball"
echo
"Final result is t
hree
tarballs in source_root_dir/build which can be copied to the ingest servers"
echo
"Final result is t
wo
tarballs in source_root_dir/build which can be copied to the ingest servers"
exit
1
fi
...
...
@@ -22,20 +22,15 @@ echo "Using Build tag $BUILD_TAG"
TEST_BUILD_DIR
=
$SOURCE_ROOT
/build/test/gnu_debug
LEXAR_BUILD_DIR
=
$SOURCE_ROOT
/build/lexar/gnu_debug
LOTAR_BUILD_DIR
=
$SOURCE_ROOT
/build/lotar/gnu_debug
mkdir
-p
$TEST_BUILD_DIR
mkdir
-p
$LEXAR_BUILD_DIR
mkdir
-p
$LOTAR_BUILD_DIR
cd
$TEST_BUILD_DIR
&&
cmake
-DBUILD_PACKAGES
=
LTAIngest
-DLTAINGEST_BUILD_TARGET
=
test
-DCMAKE_INSTALL_PREFIX
=
/globalhome/ingesttest/ltaingest_
$BUILD_TAG
$SOURCE_ROOT
cd
$LEXAR_BUILD_DIR
&&
cmake
-DBUILD_PACKAGES
=
LTAIngest
-DLTAINGEST_BUILD_TARGET
=
lexar
-DCMAKE_INSTALL_PREFIX
=
/globalhome/ingest/ltaingest_
$BUILD_TAG
$SOURCE_ROOT
cd
$LOTAR_BUILD_DIR
&&
cmake
-DBUILD_PACKAGES
=
LTAIngest
-DLTAINGEST_BUILD_TARGET
=
lotar
-DCMAKE_INSTALL_PREFIX
=
/home/lofarlocal/ltaingest_
$BUILD_TAG
$SOURCE_ROOT
cd
$TEST_BUILD_DIR
&&
make
&&
make
test
&&
rm
-rf
./local_install
&&
make
DESTDIR
=
./local_install
install
cd
$LEXAR_BUILD_DIR
&&
make
&&
rm
-rf
./local_install
&&
make
DESTDIR
=
./local_install
install
cd
$LOTAR_BUILD_DIR
&&
make
&&
rm
-rf
./local_install
&&
make
DESTDIR
=
./local_install
install
cd
$TEST_BUILD_DIR
/local_install/globalhome/ingesttest
&&
tar
cvzf
$SOURCE_ROOT
/build/ltaingest_
"
$BUILD_TAG
"
_test.tgz ltaingest_
$BUILD_TAG
cd
$LEXAR_BUILD_DIR
/local_install/globalhome/ingest
&&
tar
cvzf
$SOURCE_ROOT
/build/ltaingest_
"
$BUILD_TAG
"
_lexar.tgz ltaingest_
$BUILD_TAG
cd
$LOTAR_BUILD_DIR
/local_install/home/lofarlocal
&&
tar
cvzf
$SOURCE_ROOT
/build/ltaingest_
"
$BUILD_TAG
"
_lotar.tgz ltaingest_
$BUILD_TAG
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