forked from quarkusio/quarkus-quickstarts
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from che-samples/main
chore: merge with main branch
- Loading branch information
Showing
1,460 changed files
with
112,443 additions
and
14,935 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Declare files that will always have CRLF line endings on checkout. | ||
*.cmd text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: maven | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "23:00" | ||
timezone: Europe/Paris | ||
open-pull-requests-limit: 6 | ||
target-branch: "development" | ||
allow: | ||
- dependency-name: io.quarkiverse.*:* | ||
rebase-strategy: disabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#! /bin/bash | ||
|
||
IFS=$'\n' | ||
modules=($(grep -LR --include=pom.xml '<packaging>pom</packaging>' */ | xargs dirname | sort)) | ||
count=${#modules[@]} | ||
partition=$(expr $count / 4 + 1) | ||
|
||
json=$'{\n' | ||
json+=$' "include": [\n' | ||
json+=$' {\n' | ||
i=0 | ||
partition_index=1 | ||
for module in ${modules[@]}; do | ||
if [ $i -gt $partition ]; then | ||
json+=$'"\n },\n {\n' | ||
i=0 | ||
fi | ||
if [ $i -eq 0 ]; then | ||
json+=" \"category\": \"Native Tests - $partition_index\"," | ||
json+=$'\n "test-modules": "' | ||
((partition_index=partition_index+1)) | ||
i=0 | ||
fi | ||
json+="$module," | ||
((i=i+1)) | ||
done | ||
json+=$'"\n }\n ]\n}\n' | ||
|
||
echo "$json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
# The format of this file is documented here: | ||
# https://github.com/quarkusio/quarkus-bot#triage-issues | ||
features: [ANALYZE_WORKFLOW_RUN_RESULTS] | ||
workflowRunAnalysis: | ||
workflows: ["Pull Request Build - development"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.