├── .flake8 ├── .gitignore ├── LICENSE ├── README.md ├── ensure_clones.xsh ├── extra_remotes.yaml ├── find_repos.xsh ├── make_bleeding.xsh ├── oci ├── 01-base.xsh ├── 02-deps.xsh └── 04-run_build.xsh ├── repo_report.xsh ├── setup_extra_remotes.xsh └── used_repos.yaml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | all_repos.yaml 2 | *~ 3 | logs/*.json 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/README.md -------------------------------------------------------------------------------- /ensure_clones.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/ensure_clones.xsh -------------------------------------------------------------------------------- /extra_remotes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/extra_remotes.yaml -------------------------------------------------------------------------------- /find_repos.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/find_repos.xsh -------------------------------------------------------------------------------- /make_bleeding.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/make_bleeding.xsh -------------------------------------------------------------------------------- /oci/01-base.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/oci/01-base.xsh -------------------------------------------------------------------------------- /oci/02-deps.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/oci/02-deps.xsh -------------------------------------------------------------------------------- /oci/04-run_build.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/oci/04-run_build.xsh -------------------------------------------------------------------------------- /repo_report.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/repo_report.xsh -------------------------------------------------------------------------------- /setup_extra_remotes.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/setup_extra_remotes.xsh -------------------------------------------------------------------------------- /used_repos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacaswell/build_the_world/HEAD/used_repos.yaml --------------------------------------------------------------------------------