mirror of
https://codeberg.org/h3xx/simplify_static_dir
synced 2024-08-14 23:57:24 +00:00
24 lines
349 B
YAML
24 lines
349 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:
|
|
- t/run.sh
|
|
|
|
test-run-allinone:
|
|
stage: test
|
|
dependencies:
|
|
- build-allinone
|
|
script:
|
|
- SCRIPT=~+/simplify_static_dir.pl t/run.sh
|