Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
1b19a5d7
Commit
1b19a5d7
authored
17 years ago
by
ribeaudc
Browse files
Options
Downloads
Patches
Plain Diff
add:
- some description to the current tasks. - target 'run'. SVN: 2509
parent
5867f197
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
integration-tests/build/build.xml
+30
-3
30 additions, 3 deletions
integration-tests/build/build.xml
with
30 additions
and
3 deletions
integration-tests/build/build.xml
+
30
−
3
View file @
1b19a5d7
<project
name=
"intgration-tests"
default=
"integration-tests"
basedir=
".."
>
<property
name=
"work.dir"
value=
"playground"
/>
<target
name=
"nightly-build"
depends=
"integration-tests"
/>
<target
name=
"integration-tests"
>
<!--
// Runs integration tests (WITHOUT rebuilding everything). It assumes that it will find the
// libraries in 'install' directory. It starts by cleaning the 'playground' directory.
-->
<target
name=
"run"
description=
"Runs integration tests (WITHOUT rebuilding everything)."
>
<delete
dir=
"{work.dir}"
failonerror=
"true"
/>
<exec
executable=
"sh"
dir=
"${basedir}"
resultproperty=
"result-code"
>
<arg
value=
"./run.sh"
/>
</exec>
<fail>
<condition>
<not>
<equals
arg1=
"${result-code}"
arg2=
"0"
/>
</not>
</condition>
</fail>
</target>
<!--
// Runs integration tests (with 'force-rebuild' argument activated).
-->
<target
name=
"integration-tests"
description=
"Runs integration tests (with 'force-rebuild' argument activated)."
>
<exec
executable=
"sh"
dir=
"${basedir}"
resultproperty=
"result-code"
>
<arg
value=
"./run.sh"
/>
<arg
value=
"--force-rebuild"
/>
...
...
@@ -14,8 +38,11 @@
</condition>
</fail>
</target>
<target
name=
"clean"
>
<!--
// Cleans 'install' and 'playground' directories.
-->
<target
name=
"clean"
description=
"Cleans 'install' and 'playground' directories."
>
<exec
executable=
"sh"
dir=
"${basedir}"
>
<arg
value=
"./run.sh"
/>
<arg
value=
"clean"
/>
...
...
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