Skip to content

Commit e1f4ac5

Browse files
authored
Merge pull request #40 from gsmet/add-quickly-ci
Add quickly-ci to the elements skipping the doc build
2 parents d90591e + c971411 commit e1f4ac5

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)