speed up 100++ times by disabling Eigen3 debug stuff #22
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
name: Basic Build Workflow | |
on: | |
- pull_request | |
- push | |
jobs: | |
build-galactic: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
container: | |
image: rostooling/setup-ros-docker:ubuntu-focal-ros-galactic-ros-base-latest | |
steps: | |
- name: Fix Bugs in ros-tooling/action-ros-ci | |
run: | | |
sudo apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install -y keyboard-configuration | |
- name: Run Tests | |
uses: ros-tooling/[email protected] | |
with: | |
package-name: | | |
velodyne | |
velodyne_driver | |
velodyne_laserscan | |
velodyne_msgs | |
velodyne_pointcloud | |
target-ros2-distro: galactic | |
- name: Upload logs | |
uses: actions/upload-artifact@v1 | |
with: | |
name: colcon-logs | |
path: ros_ws/log | |
if: always() |