Attemp to pass mira tests in CI #24
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
# Simple set of rules for GitHub actions integration with a ROS project | |
# | |
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
MIRA_PATH: ${{ github.workspace }}/mira | |
LD_LIBRARY_PATH: $LD_LIBRARY_PATH:${{ github.workspace }}/mira | |
MIRA_URL: https://www.mira-project.org/downloads/ | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Cache APT Packages | |
uses: awalsh128/[email protected] | |
with: | |
packages: g++ cmake subversion doxygen libxml2-dev libssl-dev libsqlite3-dev libboost-all-dev libogre-1.9-dev libsvn-dev libopencv-dev binutils-dev libiberty-dev libcurl4-gnutls-dev libprocps-dev libqwt-qt5-dev libqt5webkit5-dev libqwtmathml-qt5-dev libqt5opengl5-dev libqt5svg5-dev qt*5-dev qttools5-dev-tools git | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install MIRA | |
run: | | |
curl -o mira-installer-binary.sh https://www.mira-project.org/downloads/mira-installer-binary.sh | |
chmod +x mira-installer-binary.sh | |
./mira-installer-binary.sh -s ubuntu-2204lts-x64 -d ${{ github.workspace }}/mira | |
- name: Setup ROS 2 | |
uses: ros-tooling/[email protected] | |
with: | |
required-ros-distributions: humble | |
- name: Install dependencies | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: | | |
scitos2 | |
scitos2_common | |
scitos2_core | |
scitos2_msgs | |
scitos2_modules | |
scitos2_mira | |
scitos2_behavior_tree | |
target-ros2-distro: humble | |
colcon-defaults: | | |
{ | |
"build": { | |
"mixin": ["coverage-gcc", "coverage-pytest"] | |
}, | |
"test": { | |
"mixin": ["coverage-pytest"] | |
} | |
} | |
skip-tests: false | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ros_ws/lcov/total_coverage.info,ros_ws/coveragepy/.coverage | |
flags: unittests | |
name: codecov-umbrella | |
slug: grupo-avispa/scitos2 |