From f1ff65c8ad479dfb474b4349f6636bbd3e0eaf72 Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Tue, 22 Jul 2025 11:37:47 +0200 Subject: [PATCH] build: Delete `Makefile` The `Makefile` was added in https://github.com/getsentry/sentry-cli/commit/53a4f3b74a33711a8727c25cd425769f28344fcf, and at that time, it was called from CI. Since then, our CI no longer calls `make` to build, lint, and test Sentry CLI, so the `Makefile` no longer appears to serve much of a purpose. So, let's delete the file to avoid confusing anyone as to its purpose. --- Makefile | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 5e176b8f47..0000000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -test: - @cargo test --all -.PHONY: test - -format: - @rustup component add rustfmt 2> /dev/null - @cargo fmt -.PHONY: format - -format-check: - @rustup component add rustfmt 2> /dev/null - @cargo fmt -- --check -.PHONY: format-check - -lint: - @rustup component add clippy 2> /dev/null - @cargo clippy --tests -- -D clippy::all -.PHONY: lint - -check: lint format-check -.PHONY: check