mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-17 11:50:18 +00:00
84b7e7b11c
The 'need-container-cmd' make target is marked as .PHONY which will cause it to be run every time. That triggers a rebuild of the container images, even when that is not required. By removing the 'need-container-cmd' target from .PHONY, and storing the contents of CONTAINER_CMD in .container-cmd, unneeded rebuilds are prevented. Signed-off-by: Niels de Vos <ndevos@redhat.com>
23 lines
292 B
Plaintext
23 lines
292 B
Plaintext
# build directory
|
|
_output
|
|
|
|
# e2e test executable
|
|
e2e.test
|
|
|
|
# docker build
|
|
deploy/cephcsi/image/cephcsi
|
|
|
|
# build container
|
|
.devel-container-id
|
|
|
|
# detected 'docker' or 'podman'
|
|
.container-cmd
|
|
|
|
# git merge files
|
|
*.orig
|
|
*.patch
|
|
*.rej
|
|
|
|
# generated golangci-lint configuration
|
|
scripts/golangci.yml
|