corvin 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
..
README.md 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
__init__.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
__main__.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
apk.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
config.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
config.yaml 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
deb.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
pacman.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
rpm.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
suggest.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
test_rosdep_repo_check.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
verify.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago
yaml.py 83804e4b05 从github下载最新的rosdistro源码进行初始化仓库 2 years ago

README.md

a system for checking rosdep rules against the current package repositories for supported platforms

Running on rosdep PRs

This test package is configured to run during pull request checks on changed rosdep key entries.

If a package can't be found in the repositories, a failing test is registered notifying the contributor. Links to package web indexes/dashboards is also printed in the action logs.

Running locally on the entire rosdep database

To review the entire rosdep database and not only the rules that were changed in the most recent commit, it is also possible to invoke the test as a python module. For example:


PYTHONPATH=test python3 -m rosdep_repo_check

Adding new repository checks

Platform checks can be added by updating config.yaml.

  • package_sources contains a set of repository base urls for each operating system distribution
  • package_dashboards contains an optional list of matching repository url patterns and template urls which can be used to extract and compose web links to packages in the matching distributions. This configuration is optional and may be omitted where appropriate.
  • supported_versions lists of operating system versions or codenames to run package presence checks for. The last version listed will be used to generate suggestions if there is no definition for that operating system.
  • supported_architectures lists of operating system architectures to run package presence checks for. Although rosdep is expected to work across architectures repositories are only checked on amd64/x86_64 to save time. If a distribution has a radically different set of packages for different architectures checks for additional architectures can be added.