Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
fc8d9588
Commit
fc8d9588
authored
9 years ago
by
Andreas Antener
Browse files
Options
Downloads
Patches
Plain Diff
added IT run scripts to Firmware
parent
cbc94fbe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
integrationtests/run-container.bash
+25
-0
25 additions, 0 deletions
integrationtests/run-container.bash
integrationtests/run-tests.bash
+65
-0
65 additions, 0 deletions
integrationtests/run-tests.bash
with
90 additions
and
0 deletions
integrationtests/run-container.bash
0 → 100755
+
25
−
0
View file @
fc8d9588
#!/bin/bash
#
# Run container and start test execution
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
set
-e
if
[
-z
"
$WORKSPACE
"
]
;
then
echo
"
\$
WORKSPACE not set"
exit
1
fi
# Pulling latest image
# TODO: remove old one to save space, until then, update manually
#echo "===> pull latest Docker image"
#docker pull px4io/sitl-testing
#echo "<==="
#
# Running SITL testing container
# Assuming that necessary source projects, including this one, are cloned in the build server workspace of this job.
#
echo
"===> run container"
docker run
--rm
-v
"
$WORKSPACE
:/job:rw"
px4io/px4-dev-ros bash
"/job/Firmware/integrationtests/run-tests.bash"
echo
"<==="
This diff is collapsed.
Click to expand it.
integrationtests/run-tests.bash
0 → 100755
+
65
−
0
View file @
fc8d9588
#!/bin/bash
#
# Starts tests from within the container
#
# License: according to LICENSE.md in the root directory of the PX4 Firmware repository
set
-e
SRC_DIR
=
/root/Firmware
# TODO
# TEST_RESULTS=/root/.ros/px4/test_results
# BAGS=/root/.ros
# CHARTS=/root/.ros/charts
# EXPORT_CHARTS=/sitl/testing/export_charts.py
# source ROS env, setup Gazebo env
source
/opt/ros/indigo/setup.bash
export
GAZEBO_MODEL_PATH
=
${
GAZEBO_MODEL_PATH
}
:
${
SRC_DIR
}
/Tools/sitl_gazebo/models
export
GAZEBO_PLUGIN_PATH
=
${
SRC_DIR
}
/Tools/sitl_gazebo/Build/:
${
GAZEBO_PLUGIN_PATH
}
export
LD_LIBRARY_PATH
=
${
LD_LIBRARY_PATH
}
:
${
SRC_DIR
}
/Tools/sitl_gazebo/Build/msgs/
export
ROS_PACKAGE_PATH
=
${
ROS_PACKAGE_PATH
}
:
${
SRC_DIR
}
echo
"deleting previous test results"
if
[
-d
/job/test_results
]
;
then
rm
-r
/job/test_results
fi
echo
"linking source to test"
if
[
-d
"
${
SRC_DIR
}
"
]
;
then
rm
-r
${
SRC_DIR
}
fi
ln
-s
/job/Firmware
${
SRC_DIR
}
echo
"=====> compile"
cd
$SRC_DIR
make posix_sitl_default
mkdir
-p
Tools/sitl_gazebo/Build
cd
Tools/sitl_gazebo/Build
cmake
-Wno-dev
..
make
-j4
echo
"<====="
# don't exit on error anymore from here on (because single tests or exports might fail)
set
+e
echo
"=====> run tests"
rostest px4 mavros_tests_posix.launch
TEST_RESULT
=
$?
echo
"<====="
# TODO
# echo "=====> process test results"
# cd $BAGS
# for bag in `ls *.bag`
# do
# echo "processing bag: $bag"
# python $EXPORT_CHARTS $CHARTS $bag
# done
# echo "copy build test results to job directory"
# cp -r $TEST_RESULTS /job/
# cp $BAGS/*.bag /job/test_results/
# cp -r $CHARTS /job/test_results/
# echo "<====="
# need to return error if tests failed, else Jenkins won't notice the failure
exit
$TEST_RESULT
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