-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
executable file
·53 lines (48 loc) · 1.29 KB
/
Copy path.gitlab-ci.yml
File metadata and controls
executable file
·53 lines (48 loc) · 1.29 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Legacy GitLab CI — paths updated for tools/<id>/docker/ layout.
# Prefer GitHub Actions: .github/workflows/docker-matrix.yml (run python _scripts/gen_ci.py)
stages:
- build_and_test
paris:
stage: build_and_test
image: docker:24.0.5
script:
- apk add --no-cache bash make
- make -C tools/paris/docker docker_build
- make -C tools/paris/docker docker_test || true
rules:
- changes:
- tools/paris/**/*
- _scripts/**/*
valentine:
stage: build_and_test
image: docker:24.0.5
script:
- apk add --no-cache bash make
- make -C tools/valentine/docker docker_build
- make -C tools/valentine/docker docker_test || true
rules:
- changes:
- tools/valentine/**/*
- _scripts/**/*
pyjedai:
stage: build_and_test
image: docker:24.0.5
script:
- apk add --no-cache bash make
- make -C tools/pyjedai/docker docker_build
- make -C tools/pyjedai/docker docker_test || true
rules:
- changes:
- tools/pyjedai/**/*
- _scripts/**/*
corenlp:
stage: build_and_test
image: docker:24.0.5
script:
- apk add --no-cache bash make
- make -C tools/corenlp/docker docker_build
- make -C tools/corenlp/docker docker_test || true
rules:
- changes:
- tools/corenlp/**/*
- _scripts/**/*