Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Brian O'Connor
2015-09-04 20:18:31 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f5d936321770bfd397aa017bc1cbdbc409305e6f
f5d93632
1 parent
d0ab3c02
Adding set -e to build commands
Change-Id: I72d02db1f6f8484f4ffb2d00406e6af2c866a7fb
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
19 additions
and
0 deletions
tools/build/onos-build
tools/build/onos-build-docs
tools/build/onos-change-version
tools/build/onos-package
tools/build/onos-package-test
tools/build/onos-snapshot
tools/build/onos-test
tools/build/onos-upload-bits
tools/build/onos-upload-docs
tools/build/onos-build
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Builds the ONOS from source.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-build-docs
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Builds the ONOS Java API docs.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-change-version
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Changes ONOS version in POM files, and other release artifacts.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-package
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Packages ONOS distributable into onos.tar.gz, onos.zip or a deb file
# -----------------------------------------------------------------------------
set
-e
# Build the staging directory used to produce the packages
function
build_stage_dir
()
{
# Make sure we have the original apache karaf bits first
...
...
tools/build/onos-package-test
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Packages ONOS test facilities into onos-test.tar.gz
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-snapshot
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Drives the ONOS snapshot process.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-test
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Launches the ONOS tests on the current cell environment.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-upload-bits
View file @
f5d9363
...
...
@@ -2,6 +2,9 @@
# -----------------------------------------------------------------------------
# Uploads ONOS distributable bits.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
tools/build/onos-upload-docs
View file @
f5d9363
...
...
@@ -3,6 +3,8 @@
# Uploads ONOS Java API docs.
# -----------------------------------------------------------------------------
set
-e
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
...
...
Please
register
or
login
to post a comment