Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sdptr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
LOFAR2.0
sdptr
Merge requests
!118
Resolve
L2SDP-855
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Resolve
L2SDP-855
L2SDP-855
into
master
Overview
0
Commits
11
Pipelines
0
Changes
9
Merged
Pieter Donker
requested to merge
L2SDP-855
into
master
2 years ago
Overview
0
Commits
11
Pipelines
0
Changes
9
Expand
Closes
L2SDP-855
0
0
Merge request reports
Compare
master
version 2
407e0a27
2 years ago
version 1
23f34267
2 years ago
master (base)
and
latest version
latest version
1dd7510d
11 commits,
2 years ago
version 2
407e0a27
10 commits,
2 years ago
version 1
23f34267
9 commits,
2 years ago
9 files
+
747
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
regressiontest/auto_build.sh
0 → 100755
+
46
−
0
Options
#!/usr/bin/env bash
# set -e
###############################################################################
#
# Copyright (C) 2018
# ASTRON (Netherlands Institute for Radio Astronomy) <http://www.astron.nl/>
# P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# $Id$
#
###############################################################################
# read generic functions/definitions
.
${
SDPTR_DIR
}
/generic.sh
sh_info
$0
"build sdptr from the git/master repo"
cd
${
HOME
}
/git/sdptr
.
./init_sdptr.sh
sdptr_exec
$0
git co master
# first pull latest sdptr version from git
sdptr_exec
$0
git pull
# clean all generated files
sh_exec
$0
make clean
# configure all make files
sh_exec
$0
autoreconf
-f
-i
sh_exec
$0
./configure
# build again and store output in a log file
sh_exec
$0
./tag_software_version.py
sh_exec
$0
make
\ No newline at end of file
Loading