Skip to content

Remove clean and no-daemon #903

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pre-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
if: always()

- name: Build the Debug variant
run: ./gradlew assembleDebug --no-daemon
run: ./gradlew assembleDebug

- name: Build the Release variant
run: ./gradlew assembleRelease --no-daemon
run: ./gradlew assembleRelease
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,9 @@
.PHONY: format clean preMerge stop all
.PHONY: format preMerge all

format:
./gradlew spotlessApply

clean:
./gradlew clean

preMerge:
./gradlew preMerge --continue

# We stop gradle at the end to make sure the cache folders
# don't contain any lock files and are free to be cached.
stop:
./gradlew --stop

all: stop clean format preMerge
all: format preMerge
9 changes: 3 additions & 6 deletions plugin-build/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
.PHONY: clean compile all dist

clean:
./gradlew clean
.PHONY: compile all dist

compile:
./gradlew assemble

# build distribution artifacts
dist:
./gradlew distZip --no-daemon --no-parallel
./gradlew distZip --no-parallel

all: clean compile dist
all: compile dist
9 changes: 3 additions & 6 deletions sentry-kotlin-compiler-plugin/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
.PHONY: clean compile all dist

clean:
./gradlew clean
.PHONY: compile all dist

compile:
./gradlew assemble

# build distribution artifacts
dist:
./gradlew distZip --no-daemon --no-parallel
./gradlew distZip --no-parallel

all: clean compile dist
all: compile dist
Loading