Skip to content
Snippets Groups Projects
Commit 94e43b6f authored by Stefan Hynek's avatar Stefan Hynek :drooling_face:
Browse files

ci(gitlab): provide basic test and build stages

parent 6d3cc63c
No related branches found
No related tags found
1 merge request!22Resolve "move to gitlab and Automize pdfenize markdown document"
Pipeline #135952 failed
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment