gitmodules: update modules
This commit is contained in:
parent
70fb84846b
commit
80ddec6615
8 changed files with 2 additions and 106 deletions
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
|||
[submodule "cicd/style"]
|
||||
path = cicd/style
|
||||
url = ../../../template/util/style.git
|
||||
url = https://gitlab.com/vermware/template/util/style.git
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
FROM debian:stretch
|
||||
ADD bootstrap.sh /
|
||||
RUN /bootstrap.sh && rm /bootstrap.sh
|
|
@ -1 +0,0 @@
|
|||
registry.git.mel.vin:443/shione/shione/cicd/coreutils:0.0
|
|
@ -1,32 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
DEBIAN=stretch
|
||||
|
||||
set -e
|
||||
|
||||
printf '%s\n' \
|
||||
"deb http://ftp.debian.org/debian $DEBIAN-backports main" \
|
||||
> /etc/apt/sources.list.d/$DEBIAN-backports.list
|
||||
|
||||
apt-get update
|
||||
|
||||
apt-get dist-upgrade -y
|
||||
|
||||
# backported cmake requires backported libuv1
|
||||
apt-get install --no-install-recommends -y \
|
||||
bash \
|
||||
ca-certificates \
|
||||
cmake/$DEBIAN-backports \
|
||||
coreutils \
|
||||
findutils \
|
||||
git \
|
||||
grep \
|
||||
libuv1/$DEBIAN-backports \
|
||||
make \
|
||||
openssh-client \
|
||||
rsync \
|
||||
sed
|
||||
|
||||
apt-get autoremove -y
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt/lists/*
|
|
@ -1,3 +0,0 @@
|
|||
FROM debian:stretch
|
||||
ADD bootstrap.sh /
|
||||
RUN /bootstrap.sh && rm /bootstrap.sh
|
|
@ -1 +0,0 @@
|
|||
registry.git.mel.vin:443/shione/shione/cicd/sphinx_html:0.0
|
|
@ -1,64 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
DEBIAN=stretch
|
||||
PLANTUML=master
|
||||
|
||||
set -e
|
||||
|
||||
printf '%s\n' \
|
||||
"deb http://ftp.debian.org/debian $DEBIAN-backports main" \
|
||||
> /etc/apt/sources.list.d/$DEBIAN-backports.list
|
||||
|
||||
apt-get update
|
||||
|
||||
apt-get dist-upgrade -y
|
||||
|
||||
# backported cmake requires backported libuv1
|
||||
apt-get install --no-install-recommends -y \
|
||||
ca-certificates \
|
||||
cmake/$DEBIAN-backports \
|
||||
curl \
|
||||
default-jre-headless \
|
||||
git \
|
||||
graphviz \
|
||||
libuv1/$DEBIAN-backports \
|
||||
make \
|
||||
python3-pip \
|
||||
python3-setuptools \
|
||||
python3-wheel
|
||||
|
||||
# some font metapackages use recommends to install their subpackages
|
||||
apt-get install -y \
|
||||
fonts-dejavu \
|
||||
fonts-liberation \
|
||||
fonts-noto
|
||||
|
||||
ln -s /usr/bin/python3 /usr/local/bin/python
|
||||
ln -s /usr/bin/pip3 /usr/local/bin/pip
|
||||
|
||||
pip install \
|
||||
sphinx \
|
||||
sphinx_rtd_theme \
|
||||
sphinxcontrib-plantuml
|
||||
|
||||
mkdir -p /opt/plantuml
|
||||
for i in batik-all-1.7.jar jlatexmath-minimal-1.0.3.jar jlm_cyrillic.jar \
|
||||
jlm_greek.jar plantuml.jar
|
||||
do
|
||||
curl -Lf \
|
||||
-o /opt/plantuml/$i \
|
||||
https://git.mel.vin/mirror/plantuml/raw/$PLANTUML/$i
|
||||
done
|
||||
|
||||
printf '%s\n%s\n' \
|
||||
'#!/bin/sh' \
|
||||
'exec java -jar /opt/plantuml/plantuml.jar "$@"' \
|
||||
> /usr/local/bin/plantuml
|
||||
chmod +x /usr/local/bin/plantuml
|
||||
|
||||
apt-get purge -y \
|
||||
curl
|
||||
|
||||
apt-get autoremove -y
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt/lists/*
|
|
@ -1 +1 @@
|
|||
Subproject commit 68df132153b7892f80ea09e41f9ce15ebc68f5f8
|
||||
Subproject commit fec71d372cb198cb9e8521b54b2a6b19e5ef2aba
|
Loading…
Reference in a new issue