After defining your robot behavior, it is important to ensure the robot running as expected as the project iterates. This repository demonstrates how to run a autonomous car in the Gazebo simulator, test it on the rostest framework, and cloud-host the continuous integration on Azure Pipelines.
This lab uses the software developed by the Autonomous Racing Project Group of TU Dortmund. Credit goes to all the contributors.
-
Run and observe the autonomous racecar simulation locally.
-
Deploy and register a ROS on Windows GPU optimized virtual machine on Azure.
-
Integrate a GitHub project with an Azure DevOps pipeline.
-
Observe the simulation runs and test results on the pipeline.
-
An Microsoft Azure account from https://portal.azure.com.
-
An Azure DevOps account from https://dev.azure.com.
-
A GitHub account from https://github.com.
- Fork this repository into your GitHub account.
- Follow this ROS Wiki page to install ROS Melodic on Windows.
- Open the ROS command prompt, and run the following to build the project.
:: Clone the github project
git clone https://github.com/<your account>/ros_simulation_lab --recursive
cd ros_simulation_lab
:: install required components
vcpkg install sdl2:x64-windows
pip install circle-fit
:: build it
cd catkin_ws
catkin_make --use-ninja -DCMAKE_BUILD_TYPE=RELEASE
- Run the autonomous car simulation.
:: source the ROS devel space.
devel\setup.bat
:: run the application
roslaunch src\ar-tu-do\ros_ws\launch\gazebo.launch world:=racetrack mode_override:=2
This launch file runs a racecar in a simulated track in Gazebo and runs autonomous driving.
- End the previous exercise and run the following rostest file:
:: source the ROS devel space.
devel\setup.bat
:: run the rostest
rostest demo demo.test
This demo.test
runs the same task as the previous exercise but in headless mode.
Additonally, it runs a demo.py
node to kick off a validation on the latest lap time.
The demo
package demonstrates an example how to organize your robot simulation with the rostest framework.
Now let's move this exercise to cloud-hosted environment with Azure Pipelines.
- This module guides you how to prepare permission for the agent pool.
- Take a note of the personal access token (PAT).
This ROS on Azure with Windows VM
is a Azure quickstart template to help setup an Azure virtual machine with ROS installed.
-
Navigate to the template. Click
Deploy to Azure
. -
A form will be brought to you and here are some important parameters for this exercise.
- Virtual Machine Size: Select
Standard_NV*
for GPU optimized virtual machine. This is required for Gazebo. - Vm Image: Select
Visual Studio 2019
for the required toolchain to build project. - Vsts Account: This is your Azure DevOps organization name. For example, this is the
name
ofhttps://dev.azure.com/<name>
. - Vsts Personal Access Token: This is the PAT noted from the previous section.
- Enable Autologon: Select
True
to run build agent in the interactive session. This is required for Gazebo.
- Virtual Machine Size: Select
- Fork this repository into your GitHub account.
- The
Integrate Your GitHub Projects With Azure Pipelines
guides you how to create a pipeline for a GitHub project in Task 1 & 2. Use your fork as the target repository. - Now you should have a pipeline running (or ready to run).
-
Check the
Related
and there is one artifact published, where you can find details logs for this run. In this example, you can also find the bag files for further analysis. -
Check the
Test and coverage
and you can find details test results by following the pass rate hyperlink.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.