Skip to content

Update packages

Update packages #6

Workflow file for this run

# Simple set of rules for GitHub actions integration with a ROS project
#
name: Build
on:
push:
branches:
- main
pull_request:
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: Download and extract MIRA
run: |
curl -o mira.tar.gz https://www.mira-project.org/downloads/MIRA-2023-12-15_r10375.tar.gz
tar -zxvf mira.tar.gz
rm mira.tar.gz
- name: Install MIRA
run: |
cd MIRA
export MIRA_PATH=$(pwd)
make
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup ROS 2
uses: ros-tooling/[email protected]
with:
required-ros-distributions: rolling
- name: Install dependencies
uses: ros-tooling/[email protected]
with:
package-name: scitos2
target-ros2-distro: rolling
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