1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunorunner_ynh.git synced 2024-09-03 20:36:13 +02:00

Merge pull request #36 from YunoHost-Apps/merge-ci-package-check

Propagate changes following CI_package_check merge
This commit is contained in:
Alexandre Aubin 2023-01-19 23:49:47 +01:00 committed by GitHub
commit 9af30cd600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View file

@ -11,18 +11,19 @@ location __PATH__/ {
include conf.d/yunohost_panel.conf.inc; include conf.d/yunohost_panel.conf.inc;
location __PATH__/logs { location __PATH__/logs {
alias /home/CI_package_check/logs/; alias __FINALPATH__/results/logs/;
autoindex on; autoindex on;
default_type "text/plain"; default_type "text/plain";
} }
location __PATH__/badges/ { location __PATH__/badges/ {
alias /home/CI_package_check/badges/; alias __FINALPATH__/results/badges/;
more_set_headers "Cache-control: max-age=300, s-maxage=300";
autoindex on; autoindex on;
} }
location __PATH__/summary/ { location __PATH__/summary/ {
alias /home/CI_package_check/summary/; alias __FINALPATH__/results/summary/;
autoindex on; autoindex on;
etag off; etag off;
more_set_headers "Cache-control: max-age=300, s-maxage=300"; more_set_headers "Cache-control: max-age=300, s-maxage=300";

View file

@ -1,9 +1,10 @@
BASE_URL = "https://__DOMAIN____PATH__" BASE_URL = "https://__DOMAIN____PATH__"
PORT = __PORT__ PORT = __PORT__
DEBUG = False PATH_TO_ANALYZER = "__FINALPATH__/analyze_yunohost_app.sh"
PATH_TO_ANALYZER = "/home/CI_package_check/analyseCI.sh"
MONITOR_APPS_LIST = False MONITOR_APPS_LIST = False
MONITOR_GIT = False MONITOR_GIT = False
MONITOR_ONLY_GOOD_QUALITY_APPS = False MONITOR_ONLY_GOOD_QUALITY_APPS = False
MONTHLY_JOBS = False MONTHLY_JOBS = False
WORKER_COUNT = 1 WORKER_COUNT = 1
YNH_BRANCH = "stable"
DIST = "bullseye"

View file

@ -36,8 +36,7 @@
{ {
"name": "path", "name": "path",
"type": "path", "type": "path",
"example": "/yunorunner", "default": "/ci"
"default": "/yunorunner"
} }
] ]
} }