forked from eclipse-embed-cdt/eclipse-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (30 loc) · 804 Bytes
/
.travis.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
# Travis CI configuration file to validate
# the GNU MCU Eclipse plug-ins.
# https://docs.travis-ci.com/user/getting-started/
# https://docs.travis-ci.com/user/multi-os/
os:
- linux
# https://docs.travis-ci.com/user/trusty-ci-environment/
# Use the new Debian 14 containers.
dist: trusty
sudo: false
# https://docs.travis-ci.com/user/languages/java/
language: java
jdk:
- oraclejdk8
git:
depth: 3
notifications:
email:
on_success: always # default: change
on_failure: always # default: always
cache:
directories:
- $HOME/.m2
branches:
except:
- /^v\d+\.\d+(\.\d+)?([-.]\d+)?$/
# -----------------------------------------------------------------------------
script:
- mvn clean verify
# -----------------------------------------------------------------------------