Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David Swasey
coq-stdpp
Commits
6c9f534d
Commit
6c9f534d
authored
Jan 25, 2018
by
Ralf Jung
Browse files
CI: actually generate and upload doc
parent
49280cda
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
6c9f534d
...
...
@@ -20,8 +20,8 @@ variables:
-
'
time
make
-k
-j$CPU_CORES
TIMED=y
2>&1
|
tee
build-log.txt'
-
'
if
fgrep
Axiom
build-log.txt
>/dev/null;
then
exit
1;
fi'
-
'
cat
build-log.txt
|
egrep
"[a-zA-Z0-9_/-]+
\((real|user):
[0-9]"
|
tee
build-time.txt'
# maybe generate and upload doc (has to be in this job as we need
the .vo fi
le
s
)
-
'
if
test
-n
"$DOCDIR";
then
build/coqdoc;
fi'
# maybe generate and upload doc (has to be in this job as we need
coq instal
le
d
)
-
'
if
[[
-n
"$DOCDIR"
]]
;
then
build/coqdoc;
fi'
cache
:
key
:
"
$CI_JOB_NAME"
paths
:
...
...
build/coqdoc
View file @
6c9f534d
...
...
@@ -3,7 +3,7 @@
# This reads the following environment variables:
# - DOCDIR: The directory to upload the documentation to
set
-e
echo
"Publishing documentation from branch
$CI_
BUILD_REF
to
$DOCDIR
"
echo
"Publishing documentation from branch
$CI_
COMMIT_REF_NAME
to
$DOCDIR
"
# We need a custom wrapper around SSH to use our settings, and ssh-agent for the key
eval
$(
ssh-agent
-s
)
...
...
@@ -12,3 +12,9 @@ export GIT_SSH=$(readlink -e "$(dirname "$0")/ssh")
# Enable tracing mode *after* we did the secret key stuff above
set
-x
# Generate documentation
make html
# Upload documentation
rsync
-a
-e
"
$GIT_SSH
"
html/
"
$DOCDIR
/"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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