2019-02-12 11:58:15 +00:00
|
|
|
|
-*- mode: outline; coding: utf-8 -*-
|
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
|
Copyright (C) 2019-2024 Free Software Foundation, Inc.
|
2019-02-12 11:58:15 +00:00
|
|
|
|
See the end of the file for license conditions.
|
|
|
|
|
|
|
|
|
|
NOTES FOR EMACS CONTINUOUS BUILD ON EMBA
|
|
|
|
|
|
|
|
|
|
A continuous build for Emacs can be found at
|
|
|
|
|
<https://emba.gnu.org/emacs/emacs>, a Gitlab instance. It watches the
|
|
|
|
|
Emacs git repository and starts a pipeline (jobset) if there are new
|
2022-03-25 08:28:44 +00:00
|
|
|
|
changes. This happens for all Emacs branches which belong to the
|
|
|
|
|
defined workflow (see below).
|
2019-02-12 11:58:15 +00:00
|
|
|
|
|
|
|
|
|
* Mail notifications
|
|
|
|
|
|
|
|
|
|
In addition to the web interface, emba can send notifications by email
|
|
|
|
|
when a job fails. It sends notifications about test status to
|
|
|
|
|
<emacs-buildstatus@gnu.org>.
|
|
|
|
|
|
|
|
|
|
If you want to receive these notifications, please subscribe at
|
|
|
|
|
<https://lists.gnu.org/mailman/listinfo/emacs-buildstatus>.
|
|
|
|
|
|
2019-09-23 18:40:51 +00:00
|
|
|
|
Alternatively, these notifications can be read via gmane at
|
2023-10-23 22:37:23 +00:00
|
|
|
|
<nntp+news.gmane.io:gmane.emacs.buildstatus>.
|
2019-09-23 18:40:51 +00:00
|
|
|
|
|
2019-02-12 11:58:15 +00:00
|
|
|
|
The messages contain a URL to the log file of the failed job, like
|
|
|
|
|
<https://emba.gnu.org/emacs/emacs/-/jobs/739/raw>.
|
|
|
|
|
|
|
|
|
|
* Emacs jobset
|
|
|
|
|
|
|
|
|
|
The Emacs jobset is defined in the Emacs source tree, file
|
2021-11-22 15:33:16 +00:00
|
|
|
|
'.gitlab-ci.yml'. All related files are located in directory
|
|
|
|
|
'test/infra'. They could be adapted for every Emacs branch, see
|
2019-02-12 11:58:15 +00:00
|
|
|
|
<https://emba.gnu.org/help/ci/yaml/README.md>.
|
|
|
|
|
|
2022-04-05 16:12:59 +00:00
|
|
|
|
Only branches whose name starts with 'master', 'emacs', 'feature', or
|
2022-03-25 08:28:44 +00:00
|
|
|
|
'fix' are considered. This is declared in the workflow rules of file
|
|
|
|
|
'test/infra/gitlab-ci.yml'.
|
|
|
|
|
|
2022-04-05 16:12:59 +00:00
|
|
|
|
A jobset on Gitlab is called a pipeline. Emacs pipelines run through
|
2021-10-06 10:24:45 +00:00
|
|
|
|
the stages 'build-images', 'platform-images' and 'native-comp-images'
|
|
|
|
|
(create an Emacs instance by 'make bootstrap' with different
|
2021-11-24 12:43:32 +00:00
|
|
|
|
configuration parameters) as well as 'normal', 'platforms' and
|
2021-10-06 10:24:45 +00:00
|
|
|
|
'native-comp' (run respective test jobs based on the produced images).
|
|
|
|
|
|
2021-11-22 15:33:16 +00:00
|
|
|
|
The jobs for stage 'normal' are contained in the file
|
|
|
|
|
'test/infra/test-jobs.yml'. This file is generated by calling 'make
|
|
|
|
|
-C test generate-test-jobs' in the Emacs source tree, and the
|
2022-04-05 16:12:59 +00:00
|
|
|
|
resulting file should be pushed to the Emacs git repository afterwards.
|
2021-11-22 15:33:16 +00:00
|
|
|
|
|
2019-02-12 11:58:15 +00:00
|
|
|
|
Every job runs in a Debian docker container. It uses the local clone
|
|
|
|
|
of the Emacs git repository to perform a bootstrap and test of Emacs.
|
2022-04-05 16:12:59 +00:00
|
|
|
|
This could happen for several jobs with changed configuration, compile,
|
2019-02-12 11:58:15 +00:00
|
|
|
|
and test parameters.
|
|
|
|
|
|
2021-10-06 10:24:45 +00:00
|
|
|
|
The 'build-image-*' jobs of the different '*-images' stages run only
|
|
|
|
|
if there are severe changes in the Emacs sources, like in Makefiles
|
|
|
|
|
etc. Otherwise they are skipped, and the corresponding 'test-*' jobs
|
|
|
|
|
run just 'make -C test ...' in the respective Docker image from a
|
|
|
|
|
previous build run.
|
2021-03-28 17:16:12 +00:00
|
|
|
|
|
2021-10-06 10:24:45 +00:00
|
|
|
|
Jobs in the 'build-images' and 'normal' stages are triggered by
|
|
|
|
|
changes of respective files in the Emacs git repository. All other
|
|
|
|
|
jobs run scheduled in a pipeline every 8 hours.
|
2021-03-28 17:16:12 +00:00
|
|
|
|
|
|
|
|
|
The log files for every test job are kept on the server for a week.
|
|
|
|
|
They can be downloaded from the server, visiting the URL
|
|
|
|
|
<https://emba.gnu.org/emacs/emacs/-/pipelines>, and selecting the job
|
|
|
|
|
in question.
|
|
|
|
|
|
2021-12-13 15:09:56 +00:00
|
|
|
|
Every pipeline generates a JUnit test report for the respective test
|
|
|
|
|
jobs, which can be inspected on the pipeline web page. This test
|
|
|
|
|
report counts completed ERT tests, aborted tests are not counted.
|
|
|
|
|
|
2019-02-12 11:58:15 +00:00
|
|
|
|
* Emba configuration
|
|
|
|
|
|
|
|
|
|
The emba configuration files are hosted on
|
|
|
|
|
<https://gitlab.com/emacs-ci/emba-ansible>.
|
|
|
|
|
|
|
|
|
|
* Identifying emba
|
|
|
|
|
|
|
|
|
|
Lisp packages, Makefiles, scripts, and other software could determine
|
|
|
|
|
whether they run on emba by checking for the environment variable
|
|
|
|
|
EMACS_EMBA_CI.
|
|
|
|
|
|
2023-04-06 14:31:49 +00:00
|
|
|
|
* Running Emba tests locally
|
|
|
|
|
|
|
|
|
|
As usual in GitLab, the tests run in containers, which could be
|
|
|
|
|
applied also locally. Unfortunately, the Emba container registry,
|
|
|
|
|
emba.gnu.org:5050, is not accessible publicly. Instead, the container
|
|
|
|
|
images must be build locally. Change the current directory to a
|
2024-10-15 15:36:56 +00:00
|
|
|
|
recent Emacs branch (not a worktree), and apply the command
|
2023-04-06 14:31:49 +00:00
|
|
|
|
|
|
|
|
|
docker build --target emacs-inotify --tag emacs-inotify \
|
|
|
|
|
-f test/infra/Dockerfile.emba .
|
|
|
|
|
|
|
|
|
|
This creates the Debian-based image emacs-inotify, based on the
|
|
|
|
|
instructions in the file Dockerfile.emba. This image is good for the
|
|
|
|
|
majority of tests. However, there are also other image build
|
2023-05-29 15:26:46 +00:00
|
|
|
|
instructions like emacs-filenotify-gio, emacs-eglot,
|
|
|
|
|
emacs-tree-sitter, emacs-gnustep and emacs-native-comp-speed{0,1,2}.
|
|
|
|
|
Use the appropriate one.
|
2023-04-06 14:31:49 +00:00
|
|
|
|
|
|
|
|
|
The image contains a directory "/checkout", which is a copy of your
|
|
|
|
|
local Emacs git repository. Emacs has been built in this directory
|
|
|
|
|
via "make bootstrap". In order to use the image, start a container
|
|
|
|
|
like
|
|
|
|
|
|
2023-05-29 15:26:46 +00:00
|
|
|
|
docker run --interactive --tty --env EMACS_EMBA_CI=1 --name emacs-inotify \
|
2023-06-03 08:19:02 +00:00
|
|
|
|
emacs-inotify /bin/bash -i
|
2023-04-06 14:31:49 +00:00
|
|
|
|
|
2023-06-03 08:19:02 +00:00
|
|
|
|
In this container, your working directory is "/checkout". Now you can
|
|
|
|
|
apply all commands known for Emacs, like
|
2023-04-06 14:31:49 +00:00
|
|
|
|
|
|
|
|
|
make -C test files-tests.log
|
|
|
|
|
|
|
|
|
|
While this container runs, you can also access its filesystem from
|
|
|
|
|
your local Emacs via Tramp. For example, in order to see the result
|
|
|
|
|
of the above test run, open the log file in your local Emacs with
|
|
|
|
|
|
|
|
|
|
C-x C-f /docker:emacs-inotify:/checkout/test/lisp/files-tests.log
|
|
|
|
|
|
|
|
|
|
Note: On local Red Hat-based systems, use "podman" instead of "docker"
|
|
|
|
|
in the shell commands and Tramp file names.
|
|
|
|
|
|
2019-02-12 11:58:15 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|