Files
remind/.gitlab-ci.yml
Dianne Skoll f9d968cf68 Fix CI script.
2022-10-10 17:31:14 -04:00

14 lines
322 B
YAML

tests:
image: 'debian:stable-slim'
before_script:
- apt update && apt-get -y install gcc make
- useradd --create-home testuser
- chown -R testuser .
- chmod -R go-w .
script:
- LANG=C.UTF-8 su testuser -c './configure && make test'
artifacts:
when: always
paths:
- tests/test.out