mirror of
https://blitiri.com.ar/repos/chasquid
synced 2026-01-07 17:47:14 +00:00
This patch adds a configuration file for the GitLab CI environment, to run the integration tests with docker.
15 lines
267 B
YAML
15 lines
267 B
YAML
|
|
stages:
|
|
- test
|
|
|
|
integration_test:
|
|
stage: test
|
|
image: docker:stable
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker info
|
|
- docker build -t chasquid-test -f test/Dockerfile .
|
|
- docker run chasquid-test env
|
|
- docker run chasquid-test make test
|