simplify_static_dir/.gitlab-ci.yml

25 lines
350 B
YAML

stages:
- build
- test
build-allinone:
stage: build
script:
- ./make-allinone.sh
artifacts:
expire_in: 1 day
paths:
- simplify_static_dir.pl
test-run:
stage: test
script:
- make test
test-run-allinone:
stage: test
dependencies:
- build-allinone
script:
- SCRIPT=./simplify_static_dir.pl make test