Contains build files shared by many Istio repos.
Go to file
Istio Automation 5fa2fe83db
Automator: update build-tools image@master in istio/common-files@master (#1205)
2025-07-17 12:38:43 -04:00
.github
bin
common-protos
files Automator: update build-tools image@master in istio/common-files@master (#1205) 2025-07-17 12:38:43 -04:00
protos/istio.io/extensions
.gitignore
CODEOWNERS
LICENSE
Makefile
README.md
get_protos.sh

README.md

Common Files

This repository contains build-related files used by several Istio repos.

Within repos that use files from this repo, just run make update-common or make update-common-protos to grab the latest versions of the files from the files/common or common-protos directories, respectively. In addition to copying the latest versions of the files from this repo, the make commands will also update the .commonfiles.sha file within their respective directories to contain the SHA representing the exact set of common files copied into the repo.

Makefile Tab Completion

The default bash-completion for make does not look for files called anything other than Makefile. Add the following to your bash profile to see all make targets provided by this repo and the repos that use it.

complete -W "\`find . -iname \"?akefil*\" | xargs -I {} grep -hoE '^[a-zA-Z0-9_.-]+:([^=]|$)' {} | sed 's/[^a-zA-Z0-9_.-]*$//' | sort -u\`" make