-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
31 lines (27 loc) · 788 Bytes
/
circle.yml
File metadata and controls
31 lines (27 loc) · 788 Bytes
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
# We set the environment variable JAVA_OPTS to reduce
# the memory footprint in order to prevent unexpected
# test termination.
machine:
environment:
JAVA_OPTS: -Xms1536m -Xmx1536m
MAVEN_OPTS: -Xms1536m -Xmx1536m
_JAVA_OPTIONS: -Xms1536m -Xmx1536m
# We download the latest version of the main project,
# build it, and install it.
dependencies:
override:
- chmod 755 "buildDependencies.sh"
- "./buildDependencies.sh"
- mvn dependency:resolve
# We set a high timeout to prevent the test from being
# terminated unexpectedly.
test:
override:
- mvn compile package test install:
timeout: 10000
# The branches to be ignored
general:
branches:
ignore:
- gh-pages
- documentation