Develop #140
Reference in New Issue
Block a user
No description provided.
Delete Branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This pull request introduces several updates to the
Makefile
, primarily aimed at improving build processes, refining task organization, and enhancing functionality. The changes include new targets for better modularity, updates to existing commands for clarity, and improvements to the handling of dependencies and environment checks.Build Process Enhancements:
dist
anddist-full
targets: Split thedist
target intobinaries
,upx
, andpackages
for better modularity. Updateddist-full
to includeclean-dist
and additional checks.upx-linux
andupx-darwin
) for platform-specific compression, simplifying theupx
target.Task Organization:
.PHONY
targets: Added multiple new targets such asbinaries
,clean-all
,show-cover
, andwarn-docker
to improve task organization and usability.build-all
tobinaries
: Updated help documentation to reflect the new target name for building binaries across all platforms.Environment and Dependency Improvements:
check-sign
target: Added a blank environment check to verify GPG signatures and trust key setup in a controlled containerized environment.clean-all
,clean-package-signer
, andclean-go-cache
for more granular cleanup options, including removal of cached volumes and secret files.These updates streamline the build process, improve clarity, and ensure better handling of dependencies and environment configurations.