1
0
Fork 0
liza/.gitlab-ci.yml

32 lines
564 B
YAML
Raw Normal View History

2020-01-15 09:18:23 -05:00
image: $BUILD_IMAGE
2017-03-23 10:55:11 -04:00
stages:
- build
- deploy
build:
stage: build
script:
- autoreconf -fvi
- ./configure --with-srcuri="$SRCURI"
2017-03-23 10:55:11 -04:00
- npm install
- make all
- make info pdf html
- make check
2017-03-23 10:55:11 -04:00
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/
2017-03-23 10:55:11 -04:00
artifacts:
paths:
- public/
expire_in: 30 min
only:
- tags