Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/publish-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ jobs:
# automatically; it packages the real artifacts as a fail-fast gate before
# publishing. `testReleaseUnitTest` compiles and tests the library release
# sources.
# NOTE: no `clean` here. The runner is ephemeral (fresh checkout, empty
# build/), so clean is unnecessary; worse, running `clean` in the same
# invocation as `testReleaseUnitTest` races with Kover and fails with
# "kover-agent.args (No such file or directory)" as clean wipes build/tmp.
- name: Build and test SDK library modules
run: ./gradlew clean bundleReleaseAar testReleaseUnitTest --stacktrace
run: ./gradlew bundleReleaseAar testReleaseUnitTest --stacktrace

- name: Stop Gradle Daemon
run: ./gradlew --stop
Expand Down
Loading