forked from DevExpress/DevExtreme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
54 lines (49 loc) · 1.66 KB
/
.drone.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
# https://github.com/drone/drone/
clone:
git:
image: plugins/git
depth: 50
when:
event: [ push, tag ]
git-pr:
image: alpine/git
commands:
- "echo \"PR $DRONE_PULL_REQUEST: $DRONE_REPO#$DRONE_BRANCH \u2190 $DRONE_COMMIT_SHA\""
- git init
- git config user.email "[email protected]"
- git remote add origin "https://github.com/$DRONE_REPO.git"
- git fetch origin "$DRONE_BRANCH"
- git fetch origin "+refs/pull/$DRONE_PULL_REQUEST/head:"
- git checkout -qf "$DRONE_BRANCH"
- git merge --squash "$DRONE_COMMIT_SHA"
when:
event: [ pull_request ]
pipeline:
build:
image: devexpress/devextreme-build:19_2
environment:
- HEADLESS=true
commands:
- ./drone-cache.sh restore
- ./docker-ci.sh
- ./drone-cache.sh rebuild
matrix:
include:
- { TARGET: lint }
- { TARGET: ts }
- { TARGET: test, CONSTEL: misc }
- { TARGET: test, CONSTEL: misc, JQUERY: true }
- { TARGET: test, CONSTEL: ui }
- { TARGET: test, CONSTEL: ui.editors }
- { TARGET: test, CONSTEL: ui.grid }
- { TARGET: test, CONSTEL: ui.scheduler }
- { TARGET: test, CONSTEL: viz }
- { TARGET: test, BROWSER: firefox, CONSTEL: misc }
- { TARGET: test, BROWSER: firefox, CONSTEL: ui }
- { TARGET: test, BROWSER: firefox, CONSTEL: ui.editors }
- { TARGET: test, BROWSER: firefox, CONSTEL: ui.grid }
- { TARGET: test, BROWSER: firefox, CONSTEL: ui.scheduler }
- { TARGET: test, BROWSER: firefox, CONSTEL: viz }
- { TARGET: test_functional, COMPONENT: dataGrid }
- { TARGET: test_functional, COMPONENT: scheduler }
- { TARGET: test_themebuilder }