-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
38 lines (32 loc) · 934 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
variables:
GIT_STRATEGY: fetch
GIT_DEPTH: 0
GIT_SUBMODULE_STRATEGY: recursive
LM_PYTHON_VERSION: "2"
DS_PYTHON_VERSION: "3"
PIP_EXTRA_INDEX_URL: "https://pkgs.frkl.io/frkl/dev"
# include:
# - template: Dependency-Scanning.gitlab-ci.yml
# - template: License-Management.gitlab-ci.yml
image: python:3.8
stages:
- test
- build
- build_windows
- release
include:
- local: '/ci/gitlab/test/tox.yml'
- local: '/ci/gitlab/test/mypy.yml'
- local: '/ci/gitlab/test/flake8.yml'
- local: '/ci/gitlab/test/coverage.yml'
- local: '/ci/gitlab/test/safety.yml'
- local: '/ci/gitlab/test/commitlint.yml'
- local: '/ci/gitlab/build/docs.yml'
- local: '/ci/gitlab/build/pkg.yml'
- local: '/ci/gitlab/build/binary_linux.yml'
- local: '/ci/gitlab/build/binary_windows.yml'
# - local: '/ci/gitlab/release/binaries.yml'
# - local: '/ci/gitlab/release/container.yml'
pages:
extends: .kiara_build_docs