Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into humble
Browse files Browse the repository at this point in the history
  • Loading branch information
InvincibleRMC committed Jul 3, 2023
2 parents 7204575 + a645c4b commit 68e1c28
Show file tree
Hide file tree
Showing 32 changed files with 46 additions and 1,332 deletions.
50 changes: 40 additions & 10 deletions .github/workflows/industrial_ci_action.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,46 @@
# https://github.com/ros-industrial/industrial_ci/blob/master/README.rst#id7
name: Continuous Integration
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git).
# For troubleshooting, see README (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst)

on: push
name: Continous Integration

on: # this determines when this workflow is run
push:
# branches: [ master, melodic-devel ] # when master or melodic-devel branch is pushed to
# pull_request:
# branches: [ master ] # when there is a pull request against master
# schedule: # uncomment to run periodically
# - cron: '0 4 * * *' # every day at 4 AM (UTC)
workflow_dispatch: # allow manually starting this workflow

jobs:
industrial_ci:
strategy:
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
name: ROS ${{ matrix.ROS_DISTRO }} (${{ matrix.ROS_REPO }})
runs-on: ubuntu-latest
strategy:
# fail-fast: false # uncomment if failing jobs should not cancel the others immediately
matrix: # matrix is the product of entries
ROS_DISTRO: [humble]
ROS_REPO: [main]
# exclude: # specific configuration can be excludes
# - {ROS_DISTRO: melodic, ROS_REPO: testing}
# include: # add additional configurations
# - {ROS_DISTRO: kinetic, ROS_REPO: testing}
env:
CCACHE_DIR: "${{ github.workspace }}/.ccache" # directory for ccache (and how we enable ccache in industrial_ci)
steps:
- uses: actions/checkout@v3
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
- uses: actions/checkout@v3 # clone target repository
- uses: actions/cache@v3 # fetch/store the directory used by ccache before/after the ci run
with:
path: ${{ env.CCACHE_DIR }}
# This configuration will always create a new ccache cache starting off from the previous one (if any).
# In this simple version it will be shared between all builds of the same ROS_REPO and ROS_REPO
# and might need some fine-tuning to match the use case
key: ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-${{github.run_id}}
restore-keys: |
ccache-${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}-
- uses: 'ros-industrial/industrial_ci@master' # run industrial_ci
env: # either pass all entries explicitly
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
ROS_REPO: ${{ matrix.ROS_REPO }}
# with: # or pass the full matrix as config
# config: ${{toJSON(matrix)}}
Empty file modified .vscode/easy_all.sh
100644 → 100755
Empty file.
Empty file modified .vscode/easy_build.sh
100644 → 100755
Empty file.
10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,6 @@ If you don't have `ros2_video_streamer` in the new `src` folder, run this:
git submodule update --init --recursive
```

### Building for VSCode users

Copy `src/.vscode/tasks.json` to `.vscode/tasks.json`:

```bash
cp src/.vscode/tasks.json .vscode
```

Now, anytime you want to build, do the following:

In VSCode, press `F1` and enter `Tasks: Run Task` in the field until you see the
Expand Down Expand Up @@ -80,7 +72,7 @@ interfaces, you'll need to run this every time you change something:
Make sure you're updated (only on the first build or if something breaks)

```bash
rosdep update --rosdistro=$ROS_DISTRO --include-eol-distros
rosdep update --rosdistro=$ROS_DISTRO
```

Install dependecies (only on the first build or if something breaks)
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pi/camera_streamer/launch/camera_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def generate_launch_description():
)

return LaunchDescription([
# front_cam_node,
# bottom_cam_node
front_cam_node,
bottom_cam_node,
camera_switch_node
])
1 change: 1 addition & 0 deletions src/pi/manipulators/TCA9555
Submodule TCA9555 added at bd1b9c
9 changes: 0 additions & 9 deletions src/pi/manipulators/TCA9555/.gitignore

This file was deleted.

22 changes: 0 additions & 22 deletions src/pi/manipulators/TCA9555/LICENSE

This file was deleted.

131 changes: 0 additions & 131 deletions src/pi/manipulators/TCA9555/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions src/pi/manipulators/TCA9555/requirements.txt

This file was deleted.

2 changes: 0 additions & 2 deletions src/pi/manipulators/TCA9555/setup.cfg

This file was deleted.

33 changes: 0 additions & 33 deletions src/pi/manipulators/TCA9555/setup.py

This file was deleted.

1 change: 0 additions & 1 deletion src/pi/manipulators/TCA9555/tca9555/__init__.py

This file was deleted.

Loading

0 comments on commit 68e1c28

Please sign in to comment.