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 #166 from YunoHost-Apps/testing

14.3.2
This commit is contained in:
Kayou 2021-10-18 11:12:32 +02:00 committed by GitHub
commit 7242accbc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -17,7 +17,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:** 14.3.0~ynh1
**Shipped version:** 14.3.2~ynh1
**Demo:** https://gitlab.com/explore

View file

@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Gestionnaire de dépôts Git proposant des fonctionnalités de wiki, suivi de bugs et de pipeline CI/CD.
**Version incluse :** 14.3.0~ynh1
**Version incluse :** 14.3.2~ynh1
**Démo :** https://gitlab.com/explore

View file

@ -2,7 +2,7 @@
"name": "GitLab",
"id": "gitlab",
"packaging_format": 1,
"version": "14.3.0~ynh1",
"version": "14.3.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,15 +1,15 @@
#!/bin/bash
gitlab_version="14.3.0"
gitlab_version="14.3.2"
# sha256sum found here: https://packages.gitlab.com/gitlab
gitlab_debian_version="buster"
gitlab_x86_64_buster_source_sha256="c5cfb7b1cfda23ff5d0b0a6651850cc838f5488915f76a28fc7ae80b13f88225"
gitlab_x86_64_buster_source_sha256="74fa8f0911c30b7ab615d67a29d6e5e2f958fe76ac866d36d1fc8a927298c26f"
gitlab_arm64_buster_source_sha256="f52869377d872a6514e96b89149d42c97698517d40f86d9de607ce2b8cbc2520"
gitlab_arm64_buster_source_sha256="33cfad63ab4c6782f41a8a4a990eade9da4a8faaf2fa718e96a8b02d67fdae3a"
gitlab_arm_buster_source_sha256="b884b64b743b64d05907ed24c1ec50313d30a7b0e43f3bd1e223ae6d215cd1c0"
gitlab_arm_buster_source_sha256="70ebb828586c5e33a4b4ec58bfe0ca3779cd6e5c421e7b97d9f707d26ab8f62d"
architecture=$(ynh_app_setting_get --app="$app" --key=architecture)
@ -20,8 +20,8 @@ elif [ "$architecture" = "arm64" ]; then
elif [ "$architecture" = "arm" ]; then
# If the version for arm doesn't exist, then use an older one
if [ -z "$gitlab_arm_buster_source_sha256" ]; then
gitlab_version="14.3.0"
gitlab_arm_buster_source_sha256="b884b64b743b64d05907ed24c1ec50313d30a7b0e43f3bd1e223ae6d215cd1c0"
gitlab_version="14.3.2"
gitlab_arm_buster_source_sha256="70ebb828586c5e33a4b4ec58bfe0ca3779cd6e5c421e7b97d9f707d26ab8f62d"
fi
gitlab_source_sha256=$gitlab_arm_buster_source_sha256
fi