55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
image: $BUILD_IMAGE
|
|
|
|
stages:
|
|
- check
|
|
- build
|
|
- deploy
|
|
|
|
release_check:
|
|
stage: check
|
|
script:
|
|
- build-aux/release-check
|
|
only:
|
|
- tags
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- git submodule update --init --recursive
|
|
- git clone https://gitlab.com/mikegerwitz/hoxsl
|
|
- export SAXON_CP=/usr/share/ant/lib/saxon9/saxon9he.jar
|
|
- export HOXSL=hoxsl
|
|
- ./bootstrap
|
|
- make all check info pdf html
|
|
artifacts:
|
|
paths:
|
|
- doc/
|
|
- tamer/target
|
|
expire_in: 30 min
|
|
|
|
build:doc:tpl:
|
|
image: $BUILD_IMAGE_TEXLIVE
|
|
stage: build
|
|
script:
|
|
- cd design/tpl/
|
|
- make
|
|
artifacts:
|
|
paths:
|
|
- design/tpl/tpl.pdf
|
|
expire_in: 30 min
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- mkdir -p public/doc
|
|
- mv doc/tame.html/* doc/tame.pdf doc/tame.info public/
|
|
- mv tamer/target/doc public/tamer/
|
|
- mkdir -p public/design
|
|
- mv design/tpl/tpl.pdf public/design/
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
expire_in: 30 min
|
|
only:
|
|
- tags
|