1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00

Merge pull request #220 from YunoHost-Apps/testing

15.11.2
This commit is contained in:
Kayou 2023-05-09 17:56:10 +02:00 committed by GitHub
commit bf37739fdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 14 deletions

View file

@ -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:** 15.11.0~ynh1
**Shipped version:** 15.11.2~ynh1
**Demo:** https://gitlab.com/explore

View file

@ -18,7 +18,7 @@ Si vous navez 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 :** 15.11.0~ynh1
**Version incluse :** 15.11.2~ynh1
**Démo :** https://gitlab.com/explore

View file

@ -2,7 +2,7 @@
"name": "GitLab",
"id": "gitlab",
"packaging_format": 1,
"version": "15.11.0~ynh1",
"version": "15.11.2~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"

View file

@ -1,18 +1,18 @@
#!/bin/bash
gitlab_version="15.11.0"
gitlab_version="15.11.2"
# sha256sum found here: https://packages.gitlab.com/gitlab
gitlab_debian_version="$(lsb_release -sc)"
gitlab_x86_64_bullseye_source_sha256="af34ec336f4f2552fa0725a7b64f81693dc8fd1c61dece50de17d9698ec779f4"
gitlab_x86_64_buster_source_sha256="e68681a256d7c333894f6ae1d261945f782f44f0f3ee3b4f7bb5ca10f1eef4bf"
gitlab_x86_64_bullseye_source_sha256="6bb86d2f687aae09e4d75563dbf45ed0722a4a134e8c41d611463f3c557879e2"
gitlab_x86_64_buster_source_sha256="d86560e5df68a11a4d1a3fdd732ef2ea3ea76fcd5e212240d1c02551d03ad580"
gitlab_arm64_bullseye_source_sha256="2c0f26c0b5733594f4b66a8934e543ab8707f0f59e807638ccd7d024e3cb4090"
gitlab_arm64_buster_source_sha256="9b83d92f6167b8cf5a28748ed29b06c2edd0f7d2005d1ae8f8f06ed69a70d9f8"
gitlab_arm64_bullseye_source_sha256="be8665f68254605fc19f192256d3584d460e54f9389454907400a936ec29fb66"
gitlab_arm64_buster_source_sha256="2273402385a35f838bdc0d7facc81b5c2c2aa18d3b5bf428d83d94b8a1499fc8"
gitlab_arm_buster_source_sha256="aa9423ae404df614911cbee432080837025d1a566967d1e0d5034d68b1c281cc"
gitlab_arm_bullseye_source_sha256="1d8a25012b380242defc3c87e33ce6434815fb8d4f9d92ebe5b891e1067ddd6d"
gitlab_arm_buster_source_sha256="34382e3c587a6a6695a80001956e98d39c1d45b5747a537d38c62b1c35f03e8d"
gitlab_arm_bullseye_source_sha256="e9665761aa44210699cf5d2bea2672f7499c125c4bccc2cc45dc9296dd33520a"
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
@ -37,16 +37,16 @@ elif [ "$architecture" = "arm" ]; then
then
# If the version for arm doesn't exist, then use an older one
if [ -z "$gitlab_arm_buster_source_sha256" ]; then
gitlab_version="15.11.0"
gitlab_arm_buster_source_sha256="aa9423ae404df614911cbee432080837025d1a566967d1e0d5034d68b1c281cc"
gitlab_version="15.11.2"
gitlab_arm_buster_source_sha256="34382e3c587a6a6695a80001956e98d39c1d45b5747a537d38c62b1c35f03e8d"
fi
gitlab_source_sha256=$gitlab_arm_buster_source_sha256
elif [ "$gitlab_debian_version" = "buster" ]
then
# If the version for arm doesn't exist, then use an older one
if [ -z "$gitlab_arm_bullseye_source_sha256" ]; then
gitlab_version="15.11.0"
gitlab_arm_bullseye_source_sha256="1d8a25012b380242defc3c87e33ce6434815fb8d4f9d92ebe5b891e1067ddd6d"
gitlab_version="15.11.2"
gitlab_arm_bullseye_source_sha256="e9665761aa44210699cf5d2bea2672f7499c125c4bccc2cc45dc9296dd33520a"
fi
gitlab_source_sha256=$gitlab_arm_bullseye_source_sha256
fi