Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for ROS repositories in the repository module #89

Merged
merged 5 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ jobs:
python3 ./gzdev.py repository purge
grep "/etc/apt/sources.list.d/_gzdev_${repo_to_test}_${repo_type_to_test}.list" log
grep "/usr/share/keyrings/_gzdev_${repo_to_test}_${repo_type_to_test}.gpg" log
- name: Smoke system tests for all the repositories
run: |
sudo env "PYTHONPATH=$pythonLocation/lib/python${{ matrix.python-version}}/site-packages" \
python3 ./gzdev.py repository enable osrf stable
sudo env "PYTHONPATH=$pythonLocation/lib/python${{ matrix.python-version}}/site-packages" \
python3 ./gzdev.py repository enable ros2 main
sudo env "PYTHONPATH=$pythonLocation/lib/python${{ matrix.python-version}}/site-packages" \
python3 ./gzdev.py repository enable ros_bootstrap main
- name: Smoke system tests for ign-docker module
run: |
python3 gzdev.py ign-docker-env citadel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
source .venv/bin/activate
pip install -r requirements.txt
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@1a4bf406072a8d0efdf6faba94a34a096430472f # v2
- uses: jakebailey/pyright-action@b5d50e5cde6547546a5c4ac92e416a8c2c1a1dfe # v 2.3.2
17 changes: 16 additions & 1 deletion plugins/config/repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,22 @@ repositories:
url: http://packages.osrfoundation.org/gazebo/debian-prerelease
- name: nightly
url: http://packages.osrfoundation.org/gazebo/debian-nightly

- name: ros2
key: C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654
key_url: https://raw.githubusercontent.com/ros/rosdistro/master/ros.key
linux_distro: ubuntu
types:
- name: main
url: http://packages.ros.org/ros2/ubuntu
- name: testing
url: http://packages.ros.org/ros2-testing/ubuntu
- name: ros_bootstrap
key: 4732CE706CD7B19DB0FFE74E8EDB2EF661FC880E
key_url: https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x4732ce706cd7b19db0ffe74e8edb2ef661fc880e
linux_distro: ubuntu
types:
- name: main
url: http://repos.ros.org/repos/ros_bootstrap
# wildcards are allowed in name, entries are processed in top-down order
# first entry matching the name is used
projects:
Expand Down
Loading