aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2023-10-12 17:02:00 -0400
committerNick Mathewson <nickm@torproject.org>2023-10-12 17:02:00 -0400
commit0d5f8bdfbcf59cf1744101131afce98a8f5a7fa0 (patch)
tree72d50f264ccf9e2ba4a16bc52a3977056511a139 /.gitlab-ci.yml
parente1555daaaaaa406210763f0b65f8dfbd11d58586 (diff)
downloadtorspec-0d5f8bdfbcf59cf1744101131afce98a8f5a7fa0.tar.gz
torspec-0d5f8bdfbcf59cf1744101131afce98a8f5a7fa0.zip
remove existing gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml52
1 files changed, 0 insertions, 52 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 6f56955..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,52 +0,0 @@
-
-variables:
- HEADER: |
- <!DOCTYPE html>
- <html lang="en-US">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width\=device-width, initial-scale=1">
- <meta name="author" content="The Tor Project, Inc.">
- <title>torspec</title>
- <link href="https://2019.www.torproject.org/css/master.min.css" rel="stylesheet">
- </head>
- <body>
- <div id="wrap"><div id="content"><div id="maincol">
- FOOTER: "</div></div></div></body></html>"
-
-pages:
- image: debian:buster
- script:
- - apt-get update
- - apt-get -qy install --no-install-recommends pandoc
- - test -d public || mkdir public
- - printf "${HEADER}<h1>%s</h1><ul>" $CI_PROJECT_PATH > public/index.html
- - for f in *.txt; do
- set -x;
- name=`echo $f | sed s,\.txt$,,`;
- md=${name}.md;
- cat $f | sed --regexp-extended
- -e '0,/^ +/{s/^ +/# /}'
- -e 's/^ {1,3}([^ ])/\1/'
- -e '/^[0-9]+\. +http/! s/^([0-9]+\. )/## \1/'
- -e 's/^([0-9]+\.[0-9]+\. )/### \1/'
- -e 's/^([0-9]+\.[0-9]+\.[0-9]+\. )/#### \1/'
- -e 's/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\. )/##### \1/'
- > $md;
- printf "\n---\n\noriginal source\x3a [$f](https://gitweb.torproject.org/torspec.git/tree/$f)\n" >> $md;
- title=`sed -En '0,/^# /s/^# (.*)/\1/p' $md`;
- printf "<li><a href=\"${name}.html\"><tt>$name</tt>&colon; $title</a></li>" >> public/index.html;
- pandoc --from=markdown $md --output=${name}.html;
- printf "$HEADER" > public/${name}.html;
- cat ${name}.html >> public/${name}.html;
- printf "$FOOTER" >> public/${name}.html;
- mkdir public/$name;
- cp public/${name}.html public/$name/index.html;
- done
- - printf "</ul>$FOOTER" >> public/index.html
- artifacts:
- paths:
- - public
- only:
- - main