Skip to content

Commit

Permalink
fix CI (missing Etherlab libs) (#13)
Browse files Browse the repository at this point in the history
* fix CI

* fix eol

* add file-wide flake8: noqa: 501

---------

Co-authored-by: Luis Maldonado <[email protected]>
  • Loading branch information
tpoignonec and BlackSnow-333 authored Jul 25, 2024
1 parent dc1663c commit 6b4c77f
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 16 deletions.
78 changes: 62 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,73 @@
name: CI (humble)
name: CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
build:
CI:
permissions:
contents: read
packages: write
issues: read
checks: write
pull-requests: write
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
steps:
- name: Prepare
run: |
mkdir -p ${{github.workspace}}/src
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
use-ros2-testing: true
- name: Print ls and pwd
run: |
ls
pwd
- uses: ros-tooling/[email protected]
path: src/needle_pantograph_ros2

- name: Build Docker Image
uses: docker/build-push-action@v5
with:
tags: needle_pantograph_ros2:humble
file: .docker/Dockerfile
push: false

- name: Build
uses: addnab/docker-run-action@v3
with:
image: needle_pantograph_ros2:humble
options: -v ${{github.workspace}}/:/ros/
run: |
apt update
cd /ros/src/
vcs import . < needle_pantograph_ros2/needle_pantograph_ros2.repos
cd /ros
. /opt/ros/humble/setup.sh
rosdep install --ignore-src --from-paths . -y -r && \
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
- name: Tests
uses: addnab/docker-run-action@v3
with:
image: needle_pantograph_ros2:humble
options: -v ${{github.workspace}}/:/ros/
run: |
apt update
cd /ros/src/
vcs import . < needle_pantograph_ros2/needle_pantograph_ros2.repos
cd /ros
. /opt/ros/humble/setup.sh
rosdep install --ignore-src --from-paths . -y -r && \
colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
colcon test
colcon test-result
- name: Upload Tests to Artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: build/*/test_results/*/*.xml

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
target-ros2-distro: humble
vcs-repo-file-url: ./needle_pantograph_ros2.repos
files: build/*/test_results/*/*.xml
2 changes: 2 additions & 0 deletions pantograph_stereo_cam/pantograph_stereo_cam/calib.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# flake8: noqa: 501

import cv2 as cv
import glob
import numpy as np
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# flake8: noqa: 501

import rclpy
import rclpy.duration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# flake8: noqa: 501

import cv2
import numpy as np
import yaml
Expand Down

0 comments on commit 6b4c77f

Please sign in to comment.