blob: 4461efe4ede321b17220d2c95279edfcb0e459be (
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
|
image: $BUILD_IMAGE
stages:
- build
- deploy
build:
stage: build
script:
- autoreconf -fvi
- ./configure --with-srcuri="$SRCURI"
- npm install
- make all
- make info pdf html
- make check
artifacts:
paths:
- doc/
expire_in: 30 min
pages:
stage: deploy
script:
- mkdir -p public/doc
- mv doc/liza.html/* doc/liza.pdf doc/liza.info public/
artifacts:
paths:
- public/
expire_in: 30 min
only:
- tags
|