blob: ce9518cc6355778fbf301375f38ff814b2526fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
---
loader: gecko_taskgraph.loader.transform:loader
kind-dependencies:
- toolchain
transforms:
- gecko_taskgraph.transforms.bootstrap:transforms
- gecko_taskgraph.transforms.task:transforms
jobs:
debian10:
image: debian:buster
pre-commands:
- apt-get update
- apt-get install -y --no-install-recommends curl mercurial python3-pip
debian11:
image: debian:bullseye
pre-commands:
- apt-get update
- apt-get install -y --no-install-recommends curl mercurial python3-pip
debian12:
image: debian:bookworm
pre-commands:
- apt-get update
- apt-get install -y --no-install-recommends curl mercurial python3-pip
ubuntu2204:
image: ubuntu:jammy
pre-commands:
- apt-get update
- apt-get install -y --no-install-recommends curl mercurial python3-pip
ubuntu2210:
image: ubuntu:kinetic
pre-commands:
- apt-get update
- apt-get install -y --no-install-recommends curl mercurial python3-pip
fedora36:
image: fedora:36
pre-commands:
- dnf install -y mercurial python3-pip
fedora37:
image: fedora:37
pre-commands:
- dnf install -y mercurial python3-pip
# Work around https://bz.mercurial-scm.org/show_bug.cgi?id=6761
- mkdir -p /etc/mercurial/hgrc.d
- (echo "[devel]"; echo discovery.randomize=false) > /etc/mercurial/hgrc.d/workaround.rc
rockylinux8:
image: rockylinux:8
pre-commands:
- dnf install -y mercurial python38-pip
opensuse-leap:
image: opensuse/leap
pre-commands:
- zypper install -y mercurial python39-pip python39-curses gzip
- ln -s /usr/bin/pip3.9 /usr/bin/pip3
opensuse-tumbleweed:
image: opensuse/tumbleweed
pre-commands:
- zypper install -y mercurial python3-pip
gentoo:
image: gentoo/stage3
pre-commands:
- emerge --sync
- emerge mercurial dev-python/pip
archlinux:
image: archlinux
pre-commands:
- pacman -Sy --noconfirm mercurial python-pip
voidlinux:
image: voidlinux/voidlinux
pre-commands:
- xbps-install -Suyv xbps
- xbps-install -Suyv curl mercurial python3-pip
# Work around https://bz.mercurial-scm.org/show_bug.cgi?id=6761
- mkdir -p /etc/mercurial/hgrc.d
- (echo "[devel]"; echo discovery.randomize=false) > /etc/mercurial/hgrc.d/workaround.rc
|