-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix CI (missing Etherlab libs) (#13)
* fix CI * fix eol * add file-wide flake8: noqa: 501 --------- Co-authored-by: Luis Maldonado <[email protected]>
- Loading branch information
1 parent
dc1663c
commit 6b4c77f
Showing
4 changed files
with
67 additions
and
16 deletions.
There are no files selected for viewing
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
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 |
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
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 | ||
|
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
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 | ||
|
2 changes: 2 additions & 0 deletions
2
pantograph_stereo_cam/pantograph_stereo_cam/triangulation_test.py
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
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 | ||
|