blob: 7334c639cf701a2cd14c2b902002f9ddea8fce46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
image: $BUILD_IMAGE
stages:
- build
- deploy
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
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/
artifacts:
paths:
- public/
expire_in: 30 min
only:
- tags
|