Skip to content

Commit 261124f

Browse files
committed
ci: fix cross-project task ordering for postMergeVerify
1 parent 19cd887 commit 261124f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ gradle.projectsEvaluated {
161161
}
162162

163163
// Ensure strict order: tests -> assemble -> lint
164-
tasks.named(':app:assembleDebug') {
164+
project(':app').tasks.named('assembleDebug') {
165165
mustRunAfter(testTasks)
166166
mustRunAfter('detektAll')
167167
}
168-
tasks.named(':app:lint') {
168+
project(':app').tasks.named('lint') {
169169
mustRunAfter(':app:assembleDebug')
170170
}
171171
}

0 commit comments

Comments
 (0)