summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 518da68ecaf8ab3a4e7ad8b1158e6a7694a836a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: alpine:latest
variables:
  CI_DEBUG_TRACE: "false"
  DOCKER_DRIVER: overlay2

services:
  - docker:stable-dind

before_script:
  - docker info || true

stages:
  - build
  - test
  - release

include:
  - local: .gitlab/ci/build.gitlab-ci.yml
  - local: .gitlab/ci/test.gitlab-ci.yml
  - local: .gitlab/ci/release.gitlab-ci.yml