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 2A43715ACFB for ; Wed, 26 Apr 2023 00:12:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3518EE087F; Wed, 26 Apr 2023 00:12:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1F7D5E087F for ; Wed, 26 Apr 2023 00:12:40 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62090335DE8 for ; Wed, 26 Apr 2023 00:12:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F36548AC for ; Wed, 26 Apr 2023 00:12:37 +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: <1682467949.8ed5bd4a077b55132d8c015edfdf2fc19d7b851f.xgqt@gentoo> Subject: [gentoo-commits] proj/emacs-openrc:master commit in: / X-VCS-Repository: proj/emacs-openrc X-VCS-Files: .gitlab-ci.yml X-VCS-Directories: / X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 8ed5bd4a077b55132d8c015edfdf2fc19d7b851f X-VCS-Branch: master Date: Wed, 26 Apr 2023 00:12:37 +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: bf47bf10-c73d-4542-a4f4-8caca1bec80e X-Archives-Hash: 1404a93c0bf57d861ceb328192a666df commit: 8ed5bd4a077b55132d8c015edfdf2fc19d7b851f Author: Maciej Barć gentoo org> AuthorDate: Wed Apr 26 00:12:29 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Apr 26 00:12:29 2023 +0000 URL: https://gitweb.gentoo.org/proj/emacs-openrc.git/commit/?id=8ed5bd4a .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