Skip to content
Snippets Groups Projects

remove documentation stage in CI

Merged Ghost User requested to merge fix-ci into master
2 files
+ 0
40
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 0
39
documentation:pdf:
before_script:
- pwd
image:
name: pandoc/latex
entrypoint:
- ''
stage: deploy
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
changes:
- documentation/design/*.md
script:
- cd documentation/design
- pandoc --citeproc --bibliography=bibliography.bib --csl=acm-sig-proceedings.csl
--variable papersize=a4paper -s *.md -o documentation.pdf
artifacts:
paths:
- documentation.pdf
.mdbook_common: &rust
image:
name: $CI_REGISTRY/danet/internetworking/mdbook:latest
entrypoint:
- ''
stage: deploy
script:
- mdbook build documentation --dest-dir public
documentation:website:
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
changes:
- documentation/design/*.md
artifacts:
paths:
- public
expire_in: 1 week
<<: *rust
\ No newline at end of file
Loading