• Home
Name Date Size #Lines LOC

..--

DockerfileD12-May-2024698 2823

README.mdD12-May-2024948 2419

run-docker.shD12-May-2024416 1913

README.md

1# CI support stuff
2
3## Docker image
4
5GitLab CI jobs run in a Docker image, defined here. To update that image
6(perhaps to install some more packages):
7
81. Edit `.gitlab-ci/Dockerfile` with the changes you want
92. Edit `.gitlab-ci/run-docker.sh` and bump the version in `TAG`
103. Run `.gitlab-ci/run-docker.sh` to build the new image, and launch a shell
11   inside it
12    * When you're done, exit the shell in the usual way
134. Run `.gitlab-ci/run-docker.sh --push` to upload the new image to the GNOME
14   GitLab Docker registry
15    * If this is the first time you're doing this, you'll need to log into the
16      registry
17    * If you use 2-factor authentication on your GNOME GitLab account, you'll
18      need to [create a personal access token][pat] and use that rather than
19      your normal password
205. Edit `.gitlab-ci.yml` (in the root of this repository) to use your new
21   image
22
23[pat]: https://gitlab.gnome.org/profile/personal_access_tokens
24