[tor-commits] [community/translations] try to unify everything in one job, to prevent duplicating the work. part of https://gitlab.torproject.org/tpo/community/l10n/-/issues/40035

emmapeel at torproject.org emmapeel at torproject.org
Wed Sep 1 12:20:26 UTC 2021


commit 1a9d0eb19aaea42137133781872a2dcfc3ccca42
Author: emma peel <emma.peel at riseup.net>
Date:   Wed Sep 1 14:20:00 2021 +0200

    try to unify everything in one job, to prevent duplicating the work. part of https://gitlab.torproject.org/tpo/community/l10n/-/issues/40035
---
 .gitlab-ci.yml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..7a4f93f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,57 @@
+image: debian:buster-slim
+
+cache:
+  key: $CI_PROJECT_PATH_SLUG.${CI_COMMIT_REF_SLUG}
+  paths:
+    - packages
+    - lego
+    - apt-cache
+
+# This template should be usable on any system that's based on apt.
+# taken from tor gitlabci
+
+.apt-template: &apt-template |
+      export LC_ALL=C.UTF-8
+      echo Etc/UTC > /etc/timezone
+      mkdir -p apt-cache
+      export APT_CACHE_DIR="$(pwd)/apt-cache"
+      echo 'quiet "1";' \
+           'APT::Install-Recommends "0";' \
+           'APT::Install-Suggests "0";' \
+           'APT::Acquire::Retries "20";' \
+           'APT::Get::Assume-Yes "true";' \
+           'Dpkg::Use-Pty "0";' \
+           "Dir::Cache::Archives \"${APT_CACHE_DIR}\"; " \
+        >> /etc/apt/apt.conf.d/99gitlab
+      apt-get update -qq
+      apt-get upgrade -qy
+
+variables:
+    GIT_SUBMODULE_STRATEGY: recursive
+
+pages:
+  script:
+    - *apt-template
+    - DEBIAN_FRONTEND=noninteractive apt-get install gettext python3-babel python3-pip git python3-inifile python3-dev python3-setuptools python3-openssl python3-cryptography i18nspector -y
+    - pip3 install virtualenv
+    - virtualenv venv
+    - source venv/bin/activate
+    - pip3 install lektor
+    - echo 'checking out translations'
+    - rm -rf i18n
+    - git clone --branch communitytpo-contentspot https://git.torproject.org/translation.git i18n
+    - git clone https://gitlab.torproject.org/tpo/community/l10n.git
+    - pip3 install polib
+    - echo 'reinstalling plugins to have last version'
+    - lektor plugins reinstall
+    - echo 'building lektor 3 times to get translations in place'
+    - lektor build --output-path public && lektor build --output-path public && lektor build --output-path public
+    - echo 'lets see if there are any updates in the strings for translation'
+    - l10n/bin/check_po_status.py communitytpo-contentspot
+  artifacts:
+    paths:
+      - public
+
+check_l10n:
+  script:
+    - l10n/bin/check_markdown_links.py i18n/



More information about the tor-commits mailing list