simplify_static_dir/.gitlab-ci.yml
Dan Church 22a7b86113
CI: Replace shell script tests with TAP harness
During all this I uncovered a bug in how Archive::Tar handles sparse
files stored in tarballs; the library reports the file as having no
contents and a size of 0. As a result, in the freed-bytes-commas test,
the tarball extraction has been replaced by on-the-fly file creation.
2023-01-29 15:39:25 -06:00

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