You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
431B

  1. from pathlib import Path
  2. from dds_ci import proc, paths
  3. PROJECT_ROOT = Path(__file__).absolute().parent.parent
  4. def self_deps_get(dds_exe: Path, repo_dir: Path) -> None:
  5. proc.check_run(
  6. dds_exe,
  7. 'deps',
  8. 'get',
  9. ('--repo-dir', repo_dir),
  10. ('--remote-list', PROJECT_ROOT / 'remote.dds'),
  11. )
  12. if __name__ == "__main__":
  13. self_deps_get(paths.CUR_BUILT_DDS, paths.SELF_TEST_REPO_DIR)