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:
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal 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
|
||||||
Reference in New Issue
Block a user