Contains build files shared by many Istio repos.
Go to file
John Howard 98d3fbb148
Manually bump 1.16 build tools
2023-06-27 15:25:45 -07:00
bin Use AUTOMATOR_REPO_DIR if set to call script (implies running pipeline) (#471) 2021-09-13 08:09:55 -07:00
common-protos common-protos: remove gogo (#565) 2022-03-24 11:05:59 -07:00
files Manually bump 1.16 build tools 2023-06-27 15:25:45 -07:00
protos/istio.io/extensions Add istio api extensions to common-files (#167) 2019-12-11 14:35:02 -08:00
.gitignore
CODEOWNERS [release-1.16] Automated branching step 4 (#688) 2022-10-20 07:21:42 -07:00
LICENSE
Makefile Add script and make target to update IMAGE_VERSION to most recent image (#464) 2021-08-27 11:39:45 -07:00
README.md
get_protos.sh Remove update-common-protos (#593) 2022-04-25 19:53:04 -07:00

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