Skip to content

Commit c971411

Browse files
committed
Add quickly-ci to the elements skipping the doc build
1 parent d90591e commit c971411

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/io/quarkus/develocity/project/plugins/CompilerConfiguredPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ private static void configureCompile(GoalMetadataProvider.Context context) {
3737
Matchers.directory(context.metadata(), Path.of("core", "deployment"))) {
3838

3939
context.metadata().inputs(inputs -> {
40-
boolean skipDocs = context.properties().getBoolean("skipDocs") || context.properties().getBoolean("quickly");
40+
boolean skipDocs = context.properties().getBoolean("skipDocs") || context.properties().getBoolean("quickly")
41+
|| context.properties().getBoolean("quickly-ci");
4142
inputs.property("skipDocs", skipDocs);
4243
});
4344
}

0 commit comments

Comments
 (0)