mirror of
https://github.com/YunoHost-Apps/gitlab_ynh.git
synced 2024-09-03 18:36:35 +02:00
Merge branch 'testing' into packagingV2
This commit is contained in:
commit
99bd246b6d
6 changed files with 80 additions and 12 deletions
|
@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
|
||||
Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features
|
||||
|
||||
**Shipped version:** 16.1.1~ynh1
|
||||
**Shipped version:** 16.2.1~ynh1
|
||||
|
||||
**Demo:** https://gitlab.com/explore
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
|||
|
||||
Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD
|
||||
|
||||
**Version incluse :** 16.1.1~ynh1
|
||||
**Version incluse :** 16.2.1~ynh1
|
||||
|
||||
**Démo :** https://gitlab.com/explore
|
||||
|
||||
|
|
|
@ -1170,6 +1170,7 @@ puma['port'] = __PORT_PUMA__
|
|||
##! can be used to ensure certain queues are able to handle additional workload.
|
||||
##! https://docs.gitlab.com/ee/administration/operations/extra_sidekiq_processes.html
|
||||
|
||||
# sidekiq['enable'] = true
|
||||
# sidekiq['log_directory'] = "/var/log/gitlab/sidekiq"
|
||||
# sidekiq['log_format'] = "json"
|
||||
# sidekiq['shutdown_timeout'] = 4
|
||||
|
@ -1437,6 +1438,7 @@ sidekiq['listen_port'] = __PORT_SIDEKIQ__
|
|||
# redis['username'] = "gitlab-redis"
|
||||
# redis['group'] = "gitlab-redis"
|
||||
# redis['maxclients'] = "10000"
|
||||
# redis['open_files_ulimit'] = nil # Maximum number of open files allowed for the redis process (defaults to ope
|
||||
# redis['maxmemory'] = "0"
|
||||
# redis['maxmemory_policy'] = "noeviction"
|
||||
# redis['maxmemory_samples'] = "5"
|
||||
|
|
66
manifest.json
Normal file
66
manifest.json
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"name": "GitLab",
|
||||
"id": "gitlab",
|
||||
"packaging_format": 1,
|
||||
"version": "16.2.1~ynh1",
|
||||
"description": {
|
||||
"en": "Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features",
|
||||
"fr": "Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD"
|
||||
},
|
||||
"url": "https://gitlab.com",
|
||||
"upstream": {
|
||||
"license": "MIT",
|
||||
"website": "https://gitlab.com",
|
||||
"demo": "https://gitlab.com/explore",
|
||||
"admindoc": "https://docs.gitlab.com/",
|
||||
"code": "https://gitlab.com/gitlab-org/omnibus-gitlab - https://gitlab.com/gitlab-org/gitlab",
|
||||
"cpe": "cpe:2.3:a:gitlab:gitlab"
|
||||
},
|
||||
"license": "MIT",
|
||||
"maintainer": {
|
||||
"name": "kay0u",
|
||||
"email": "pierre@kayou.io"
|
||||
},
|
||||
"requirements": {
|
||||
"yunohost": ">= 4.2.3"
|
||||
},
|
||||
"multi_instance": false,
|
||||
"services": [
|
||||
"nginx"
|
||||
],
|
||||
"arguments": {
|
||||
"install": [
|
||||
{
|
||||
"name": "domain",
|
||||
"type": "domain"
|
||||
},
|
||||
{
|
||||
"name": "path",
|
||||
"type": "path",
|
||||
"default": "/gitlab"
|
||||
},
|
||||
{
|
||||
"name": "admin",
|
||||
"type": "user"
|
||||
},
|
||||
{
|
||||
"name": "is_public",
|
||||
"type": "boolean",
|
||||
"help": {
|
||||
"en": "If your GitLab instance is public, anyone can see your public repositories.",
|
||||
"fr": "Si votre instance GitLab est publique, tout le monde pourra voir vos dépôts publics."
|
||||
},
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"name": "use_web_account",
|
||||
"type": "boolean",
|
||||
"ask": {
|
||||
"en": "Authorize account creation from GitLab web interface",
|
||||
"fr": "Autoriser la création de compte depuis l'interface web de GitLab ?"
|
||||
},
|
||||
"default": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -5,7 +5,7 @@ name = "GitLab"
|
|||
description.en = "Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features"
|
||||
description.fr = "Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD"
|
||||
|
||||
version = "16.1.1~ynh1"
|
||||
version = "16.2.1~ynh1"
|
||||
|
||||
maintainers = ["kay0u"]
|
||||
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
gitlab_version="16.1.1"
|
||||
gitlab_version="16.2.1"
|
||||
|
||||
# sha256sum found here: https://packages.gitlab.com/gitlab
|
||||
gitlab_debian_version="$(lsb_release -sc)"
|
||||
|
||||
gitlab_x86_64_bookworm_source_sha256="93a347b794b54b9aeead46a1cd7ff03fbdad6a41f75679e584091d5dcc1e9bff"
|
||||
gitlab_x86_64_bullseye_source_sha256="8314b2d0029769cce1f24fa775d7680c49f88fc5c53176e24f699828d1cb1647"
|
||||
gitlab_x86_64_buster_source_sha256="74592bfba421cced9911b0373fcc1f12639b283dd822b076d300e90c419f7bfb"
|
||||
gitlab_x86_64_bookworm_source_sha256="1bfab0d0cf06fbc14a800bda404c5280f9ba6ce5206600ff1f3deb9cb38cb529"
|
||||
gitlab_x86_64_bullseye_source_sha256="515b7baf0777b669fc38cdd1e7241ef570995d3c70ef0eafea71d7a2fe230c19"
|
||||
gitlab_x86_64_buster_source_sha256="fc9da9ef2e135fbccffa8eb1b6110ea4d13fc838914b4dc9c0e74737e41a2e55"
|
||||
|
||||
gitlab_arm64_bookworm_source_sha256="de1449f54ecec2ed2f1f6321c539e6d848faaf0ba6734c23ac1c20c657e642a5"
|
||||
gitlab_arm64_bullseye_source_sha256="adff825941e91a0421fffc491e1e3d2632e5a210fd66320e304c850d07f73ed4"
|
||||
gitlab_arm64_buster_source_sha256="a7a5e0228d6fb23919679af7548ba1255e785f4a7fe7e5926545a2a254577980"
|
||||
gitlab_arm64_bookworm_source_sha256="9e4b8f8a4647d035a570794829d6f9c56e8af37cd9ae9e98b34a1c73fdc04a9e"
|
||||
gitlab_arm64_bullseye_source_sha256="2bd247f74012006779b306969f0ee84f3215f8eeb2d374a57973548063eb5235"
|
||||
gitlab_arm64_buster_source_sha256="15b74c0e0e9c25bf2874fd2ff616e155d8cf3b42d9a98a77474ba25b8d2661ae"
|
||||
|
||||
gitlab_arm_bookworm_source_sha256=""
|
||||
gitlab_arm_bullseye_source_sha256="5aa71840a808f99f27afb9bf89deb73bda9185e1f91a1f1796f21e5bba8ac104"
|
||||
gitlab_arm_buster_source_sha256="4a2e40b602797121780676197570093814d035281034ff30f08060255969bdb8"
|
||||
gitlab_arm_bullseye_source_sha256="15f31f35db3a5290b520b69e46f824e0b4a0ea4753e1b3ebc98b944e2079263c"
|
||||
gitlab_arm_buster_source_sha256="d3a023869fe62345e5c0f4f7c2de3c42c3bbba92193a7094ee7291c12b1f9b06"
|
||||
|
||||
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
|
||||
|
||||
|
|
Loading…
Reference in a new issue