-
Notifications
You must be signed in to change notification settings - Fork 449
/
.gitlab-ci.yml
60 lines (45 loc) · 944 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
image: ubuntu:20.04
variables:
BUILD_DIR: "build"
INSTALL_PREFIX: "copyq"
SCREENSHOT_DIR: "screenshots"
TESTS_LOG_DIR: "logs"
DEBIAN_FRONTEND: "noninteractive"
build:
stage: build
before_script:
- utils/gitlab/build-before_script.sh
script:
- utils/gitlab/build-script.sh
# Upload installed application.
artifacts:
paths:
- "$INSTALL_PREFIX"
cache:
paths:
- build
# Run simple tests (doesn't require GUI)
test:
stage: test
before_script:
- utils/gitlab/test-before_script.sh
script:
- utils/gitlab/test-script.sh
dependencies:
- build
# GUI tests (requires X11)
test_gui:
stage: test
before_script:
- utils/gitlab/test_gui-before_script.sh
script:
- utils/gitlab/test_gui-script.sh
# Upload screenshots on failure.
artifacts:
when: on_failure
paths:
- "$SCREENSHOT_DIR"
- "$TESTS_LOG_DIR"
dependencies:
- build