blob: 3064da785fc101110ae65bc50dbbc97eca2c092a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
set -e
#!/bin/bash
set -e
#set -x
# we need a name and an email
#git config --global user.name build.automotivelinux.org
#git config --global user.email jenkins@automotivelinux.org
git config --global user.name build.automotivelinux.org
git config --global user.email jenkins@automotivelinux.org
rm -rf docs-webtemplate || true
wget https://raw.githubusercontent.com/automotive-grade-linux/docs-webtemplate/master/setupdocs.sh
mkdir docs-webtemplate
bash -x setupdocs.sh --directory=docs-webtemplate --webtemplate-ref=master --doctools-ref=master
# Todo --baseurl=/upload/ci/20018
cd docs-webtemplate
make build
|