python-driver icon indicating copy to clipboard operation
python-driver copied to clipboard

cicd: move scripts that build wheels and sdists to Makefile

Open dkropachev opened this issue 1 year ago • 0 comments

Take logic that builds wheels and sdist from github action and move it into a Makefile. Use following trick for windows:

ifeq ($(OS),Windows_NT)
    #Windows stuff
    ...
else
    #Linux stuff
    ....
endif

dkropachev avatar Feb 18 '25 14:02 dkropachev