mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
19 lines
409 B
YAML
19 lines
409 B
YAML
workflow:
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH =~ /wip/
|
|
when: never
|
|
|
|
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 all && make test'
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- tests/test.out
|