Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adam
stdpp
Commits
49280cda
Commit
49280cda
authored
7 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
CI: prepare for generating and uploading docs
parent
183c5cfe
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+3
-0
3 additions, 0 deletions
.gitlab-ci.yml
build/coqdoc
+14
-0
14 additions, 0 deletions
build/coqdoc
build/ssh
+3
-0
3 additions, 0 deletions
build/ssh
with
20 additions
and
0 deletions
.gitlab-ci.yml
+
3
−
0
View file @
49280cda
...
...
@@ -20,6 +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 files)
-
'
if
test
-n
"$DOCDIR";
then
build/coqdoc;
fi'
cache
:
key
:
"
$CI_JOB_NAME"
paths
:
...
...
@@ -52,6 +54,7 @@ build-coq.8.7.1:
<<
:
*template
variables
:
OPAM_PINS
:
"
coq
version
8.7.1"
DOCDIR
:
"
center.mpi-sws.org:/www/sws-websites/plv.mpi-sws.org/iris/stdpp-doc"
except
:
-
triggers
...
...
This diff is collapsed.
Click to expand it.
build/coqdoc
0 → 100755
+
14
−
0
View file @
49280cda
#!/bin/bash
# Script to automatically generate and publish coqdoc via CI.
# 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
"
# We need a custom wrapper around SSH to use our settings, and ssh-agent for the key
eval
$(
ssh-agent
-s
)
echo
"
${
COQDOC_KEY
}
"
|
tr
-d
'\r'
| ssh-add -
export
GIT_SSH
=
$(
readlink
-e
"
$(
dirname
"
$0
"
)
/ssh"
)
# Enable tracing mode *after* we did the secret key stuff above
set
-x
This diff is collapsed.
Click to expand it.
build/ssh
0 → 100755
+
3
−
0
View file @
49280cda
#!/bin/bash
_DIR
=
$(
readlink
-e
"
$(
dirname
"
$0
"
)
"
)
exec
ssh
-o
StrictHostKeyChecking
=
yes
-o
UserKnownHostsFile
=
"
${
_DIR
}
/ssh_host_keys"
"
$@
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment