1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-19 14:57:04 +00:00

gitlab-ci.yml: Add a configuration file for GitLab CI

This patch adds a configuration file for the GitLab CI environment, to
run the integration tests with docker.
This commit is contained in:
Alberto Bertogli
2018-11-29 02:27:03 +00:00
parent dd7cfaebf2
commit f4b41b6725

14
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,14 @@
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