You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the bug? ./gradlew clean is a standard task that is supposed to allow for subsequent builds to have a clean idempotent start.
At the moment all the JNI artifacts from previous builds remain and pollute the builds.
This is making it hard to reproduce locally when something breaks on the remote build and vice versa. For example: #2442 (comment)
How can one reproduce the bug?
Steps to reproduce the behavior:
What is the expected behavior?
After this change the expected behavior should make sure we have no left over build artifacts for JNI and they will all build from scratch
The text was updated successfully, but these errors were encountered:
What is the bug?
./gradlew clean
is a standard task that is supposed to allow for subsequent builds to have a clean idempotent start.At the moment all the JNI artifacts from previous builds remain and pollute the builds.
This is making it hard to reproduce locally when something breaks on the remote build and vice versa. For example:
#2442 (comment)
How can one reproduce the bug?
Steps to reproduce the behavior:
./gradlew clean; ./gradlew build
What is the expected behavior?
After this change the expected behavior should make sure we have no left over build artifacts for JNI and they will all build from scratch
The text was updated successfully, but these errors were encountered: