Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
west-public
West
Commits
840a6fc0
Commit
840a6fc0
authored
Aug 02, 2018
by
Marco Govoni
Browse files
Merge branch 'master' of
http://greatfire.uchicago.edu/west-rcc/West
parents
679e84ab
9627a345
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
840a6fc0
...
...
@@ -3,6 +3,7 @@ variables:
stages
:
-
build
-
doc
-
test
west_build
:
...
...
@@ -48,3 +49,47 @@ west_test_gamma:
-
make > /dev/null
-
cd test-suite
-
make NP=28 NI=1 NT=1
west_doc_build
:
tags
:
[
rcc
,
docker
,
node-01
]
stage
:
doc
image
:
debian:7
before_script
:
-
apt-get update > /dev/null
-
apt-get install -qq build-essential > /dev/null
-
apt-get install -qq apt-utils > /dev/null
-
apt-get install -qq wget git > /dev/null
-
apt-get -qq install vim > /dev/null
-
apt-get -qq install zlib1g-dev > /dev/null
-
apt-get -qq install libssl-dev > /dev/null
-
export TZ="US/Central"
-
rm -f /etc/localtime
-
cp /usr/share/zoneinfo/$TZ /etc/localtime
-
apt-get install -qq texlive-latex-base > /dev/null
-
apt-get install -qq latex2html > /dev/null
-
apt-get install -qq pandoc > /dev/null
-
cd /opt
-
export PY_VERSION="3.5.4"
-
wget https://www.python.org/ftp/python/$PY_VERSION/Python-$PY_VERSION.tgz
-
tar -xzvf Python-$PY_VERSION.tgz
-
cd Python-$PY_VERSION
-
export PY_DIR="/opt/python"
-
./configure --prefix $PY_DIR
-
make
-
make install
-
ln -s $PY_DIR/bin/python3.5 $PY_DIR/bin/python
-
export PATH=$PY_DIR/bin:$PATH
-
wget https://bootstrap.pypa.io/get-pip.py
-
python get-pip.py
-
which python
-
which pip
-
pip install nbsphinx
-
pip install sphinx_rtd_theme
-
pip install ipython
script
:
-
git clone -b $CI_COMMIT_REF_NAME $CI_REPOSITORY_URL West
-
cd West
-
git describe
-
cd doc
-
make html
-
ls _build/html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment