-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP started working on ROS-I CI and pytest
- Loading branch information
1 parent
d5de1d8
commit ed9df4d
Showing
2 changed files
with
32 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
industrial_ci: | ||
strategy: | ||
matrix: # matrix is the product of entries | ||
ROS_DISTRO: [ | ||
# humble, | ||
jazzy | ||
] | ||
ROS_REPO: [ | ||
# testing, | ||
main | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ros-industrial/industrial_ci@master | ||
env: | ||
ROS_DISTRO: ${{ matrix.ROS_DISTRO }} | ||
ROS_REPO: ${{ matrix.ROS_REPO }} | ||
PIP_BREAK_SYSTEM_PACKAGES: 1 # required since python 3.12 for rosdep to work | ||
DOWNSTREAM_WORKSPACE: "github:marcoesposito1988/easy_handeye2_demo#master" |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
|
||
def test_calib(): | ||
assert True | ||
|
||
# def test_ci_handles_failure(): | ||
# assert False |