-
-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #642 from Dronecode/improve-integration-tests
Improve integration tests, add integration tests to CI
- Loading branch information
Showing
35 changed files
with
485 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# PX4 SITL testing environment for the Dronecode SDK based on Ubuntu 18.04. | ||
# | ||
# Author: Julian Oes <julian@oes.ch> | ||
# | ||
FROM dronecode/dronecode-sdk-ubuntu-18.04 | ||
MAINTAINER Julian Oes <julian@oes.ch> | ||
|
||
ENV FIRMWARE_DIR ${WORKDIR}../Firmware | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y cmake \ | ||
curl \ | ||
git \ | ||
libeigen3-dev \ | ||
libopencv-dev \ | ||
libroscpp-dev \ | ||
protobuf-compiler \ | ||
python-empy \ | ||
python-jinja2 \ | ||
python-numpy \ | ||
python-toml \ | ||
python-yaml \ | ||
unzip \ | ||
gazebo9 \ | ||
libgazebo9-dev \ | ||
ninja-build \ | ||
psmisc \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get clean autoclean \ | ||
&& rm -rf /var/lib/apt/lists/{apt,dpkg,cache,log} /tmp/* /var/tmp/* | ||
|
||
RUN git clone https://github.com/PX4/Firmware.git ${FIRMWARE_DIR} | ||
RUN git -C ${FIRMWARE_DIR} submodule update --init --recursive | ||
RUN cd ${FIRMWARE_DIR} && DONT_RUN=1 make px4_sitl gazebo && DONT_RUN=1 make px4_sitl gazebo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.