comparison Makefile @ 51307:87bfd1703597

contrib: add a set of scripts to run pytype in Docker Having a simple way to run pytype for developers can massively shorten development cycle. Using the same Docker image and scripts that we use on our CI guarantees that the result achieved locally will be very similar to (if not the same as) the output of our CI runners. Things to note: the Dockerfile needs to do a little dance around user permissions inside /home/ci-runner/ because: - on one hand, creating new files on the host (e.g. .pyi files inside .pytype/) should use host user's uid and gid - on the other hand, when we run the image as uid:gid of host user, it needs to be able to read/execute files inside the image that are owned by ci-runner Since local user's uid might be different from ci-runner's uid, we execute this very broad chmod command inside /home/ci-runner/, but then run the image as the host user's uid:gid. There might be a better way to do this.
author Anton Shestakov <av6@dwimlabs.net>
date Mon, 08 Jan 2024 13:35:02 +0100
parents 0f0880c8a7e5
children 061bd7b06608
comparison
equal deleted inserted replaced
51306:46280260d010 51307:87bfd1703597
294 rm -rf $(PYOX_DIR)/contrib 294 rm -rf $(PYOX_DIR)/contrib
295 cp -a contrib $(PYOX_DIR)/contrib 295 cp -a contrib $(PYOX_DIR)/contrib
296 rm -rf $(PYOX_DIR)/doc 296 rm -rf $(PYOX_DIR)/doc
297 cp -a doc $(PYOX_DIR)/doc 297 cp -a doc $(PYOX_DIR)/doc
298 298
299 pytype-docker:
300 contrib/docker/pytype/recipe.sh
299 301
300 .PHONY: help all local build doc cleanbutpackages clean install install-bin \ 302 .PHONY: help all local build doc cleanbutpackages clean install install-bin \
301 install-doc install-home install-home-bin install-home-doc \ 303 install-doc install-home install-home-bin install-home-doc \
302 dist dist-notests check tests rust-tests check-code format-c \ 304 dist dist-notests check tests rust-tests check-code format-c \
303 update-pot pyoxidizer pyoxidizer-windows-tests pyoxidizer-macos-tests \ 305 update-pot pyoxidizer pyoxidizer-windows-tests pyoxidizer-macos-tests \
304 $(packaging_targets) \ 306 $(packaging_targets) \
305 osx 307 osx pytype-docker