diff --git a/.gittally.yml b/.gittally.yml new file mode 100644 index 0000000..6862a0b --- /dev/null +++ b/.gittally.yml @@ -0,0 +1,37 @@ +server: + # Public base URL of this GitTally installation — used for all links posted to Gitea. + publicBaseUrl: "" + +# Gitea integration for fetching commits and posting build statuses. +gitea: + baseUrl: https://github.com # base URL of the Gitea instance + owner: mhoennig # repository owner (user or organisation) for Gitea API (e.g. status checks) + repo: gittally # repository name + statusContext: GitTally # label shown on Gitea commit status checks (default: GitTally) + +# Build artifact retention. +artifacts: + # number of builds to keep per branch + retentionPerBranch: 3 + +# Controls the branch-polling loop. +watcher: + # max commit age for new origin branches to be pulled automatically + newBranchMaxAge: 5d + +# Per-branch build configuration. +# Use "default" as the fallback for all branches not listed explicitly. +branches: + default: + # run before each build + cleanCommand: rm -rf build + # shell command for each build + buildCommand: ./gradlew --console=plain --no-daemon test + # directories copied as build artifacts + artifactDirs: + - build/reports + stdoutLog: build.stdout.log # filename for captured stdout + stderrLog: build.stderr.log # filename for captured stderr + autoBuild: + enabled: false # whether to rebuild on schedule + times: ["01:00"] # UTC times HH:MM for scheduled builds diff --git a/.idea/gradle.xml b/.idea/gradle.xml index f9163b4..ce1c62c 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -1,5 +1,6 @@ +