Skip to content
Snippets Groups Projects

Resolve "move to gitlab and Automize pdfenize markdown document"

All threads resolved!
1 file
+ 32
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 32
0
include:
- template: Code-Quality.gitlab-ci.yml
stages:
- test
- build
- release
tests:
stage: test
image: node:10
before_script:
- npm install
script:
- npx markdownlint -o markdownlint-report.txt rdd-technical-reference.md
artifacts:
expose_as: 'markdownlint report'
paths:
- markdownlint-report.txt
except:
- tags
create_pdf:
stage: build
image: pandoc/latex
before_script:
- pandoc --version
script:
- pandoc --template=rdd.latex rdd-technical-reference.md -o rdd-technical-reference.pdf
only:
- master
Loading