##// END OF EJS Templates
contrib: run python3+chg tests too in heptapod CI...
contrib: run python3+chg tests too in heptapod CI Recent patches made the CI on python3+chg green. Let's enable this before there are more failures to fix. Differential Revision: https://phab.mercurial-scm.org/D9569

File last commit:

r46547:eccbfa7e default
r46762:d109dda4 default
Show More
centos7
20 lines | 361 B | text/plain | TextLexer
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 FROM centos:centos7
Gregory Szorc
packaging: consistently create build user in Dockerfiles...
r38475
Mathias De Mare
packaging: allow running packaging with custom uid+gid for CentOS...
r41270 RUN groupadd -g %GID% build && \
useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
Gregory Szorc
packaging: consistently create build user in Dockerfiles...
r38475
Mathias De Mare
packaging: switch centos 7 packaging to python 3...
r46440 RUN yum install -y epel-release
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 RUN yum install -y \
gcc \
gettext \
make \
Mathias De Mare
packaging: switch centos 7 packaging to python 3...
r46440 python3-devel \
python36-docutils \
Gregory Szorc
packaging: move most of contrib/docker to contrib/packaging/docker...
r38023 rpm-build \
tar
# For creating repo meta data
RUN yum install -y createrepo
Mathias De Mare
packaging: enable rust extensions on centos...
r46547
# For rust extensions
RUN yum install -y cargo