From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C53015ACFB for ; Wed, 26 Apr 2023 00:11:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 610E4E0882; Wed, 26 Apr 2023 00:11:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47CC8E0882 for ; Wed, 26 Apr 2023 00:11:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 296FC340F41 for ; Wed, 26 Apr 2023 00:11:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 777E6A53 for ; Wed, 26 Apr 2023 00:11:39 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1682467868.3b1c5f8f7f112a09bcf70b3f2d4de30e25c9d1ab.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-elogt:master commit in: / X-VCS-Repository: proj/emacs-elogt X-VCS-Files: .gitlab-ci.yml X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 3b1c5f8f7f112a09bcf70b3f2d4de30e25c9d1ab X-VCS-Branch: master Date: Wed, 26 Apr 2023 00:11:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5b9753fc-a390-4558-875e-277438869bed X-Archives-Hash: bed7cf98330b24a5eb82d82d0550a69a commit: 3b1c5f8f7f112a09bcf70b3f2d4de30e25c9d1ab Author: Maciej Barć gentoo org> AuthorDate: Wed Apr 26 00:11:08 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Apr 26 00:11:08 2023 +0000 URL: https://gitweb.gentoo.org/proj/emacs-elogt.git/commit/?id=3b1c5f8f .gitlab-ci.yml: use registry.gentoo.org/emacs/container-emacs Signed-off-by: Maciej Barć gentoo.org> .gitlab-ci.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b7c111..19583ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,22 +2,24 @@ variables: - GIT_SUBMODULE_STRATEGY: recursive - TERM: dumb + GIT_SUBMODULE_STRATEGY: recursive + TERM: dumb stages: - install -image: debian:unstable - -before_script: - - apt update && apt install -y emacs-nox make - - mkdir -p ~/.emacs.d +image: registry.gentoo.org/emacs/container-emacs/debian-unstable:latest install: stage: install timeout: 10 minutes + rules: + - changes: + - "*.el" + - .gitlab-ci.yml + - Makefile + script: - make install