Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
tci-gateway-module
Grpc
Commits
1961a80e
Commit
1961a80e
authored
9 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
simplify scripts
parent
6812f4ee
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
tools/jenkins/run_jenkins.sh
+5
-40
5 additions, 40 deletions
tools/jenkins/run_jenkins.sh
with
5 additions
and
40 deletions
tools/jenkins/run_jenkins.sh
+
5
−
40
View file @
1961a80e
...
...
@@ -39,51 +39,16 @@
# NOTE: No empty lines should appear in this file before igncr is set!
set
-ex
-o
igncr
||
set
-ex
# Grabbing the machine's architecture
arch
=
`
uname
-m
`
case
$platform
in
i386
)
arch
=
"i386"
platform
=
"linux"
docker_suffix
=
_32bits
;;
esac
if
[
"
$platform
"
==
"linux"
]
then
echo
"building
$language
on Linux"
./tools/run_tests/run_tests.py
--use_docker
-t
-l
$language
-c
$config
-x
report.xml
-j
3
$@
||
TESTS_FAILED
=
"true"
elif
[
"
$platform
"
==
"windows"
]
then
echo
"building
$language
on Windows"
# Prevent msbuild from picking up "platform" env variable, which would break the build
unset
platform
python tools/run_tests/run_tests.py
-t
-l
$language
-c
$config
-x
report.xml
-j
3
$@
||
TESTS_FAILED
=
"true"
elif
[
"
$platform
"
==
"macos"
]
then
echo
"building
$language
on MacOS"
# Prevent msbuild from picking up "platform" env variable, which would break the build
unset
platform
./tools/run_tests/run_tests.py
-t
-l
$language
-c
$config
-x
report.xml
-j
3
$@
||
TESTS_FAILED
=
"true"
USE_DOCKER_MAYBE
=
"--use_docker"
elif
[
"
$platform
"
==
"freebsd"
]
then
echo
"building
$language
on FreeBSD"
export
MAKE
=
gmake
fi
MAKE
=
gmake ./tools/run_tests/run_tests.py
-t
-l
$language
-c
$config
-x
report.xml
-j
3
$@
||
TESTS_FAILED
=
"true"
unset
platform
# variable named 'platform' breaks the windows build
else
echo
"Unknown platform
$platform
"
exit
1
fi
python tools/run_tests/run_tests.py
$USE_DOCKER_MAYBE
-t
-l
$language
-c
$config
-x
report.xml
-j
3
$@
||
TESTS_FAILED
=
"true"
if
[
!
-e
reports/index.html
]
then
...
...
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