-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcircle.yml
More file actions
32 lines (29 loc) · 786 Bytes
/
circle.yml
File metadata and controls
32 lines (29 loc) · 786 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
32
general:
branches:
only:
- master
- develop
- /feature/.*
- bugfix.*
machine:
java:
version: oraclejdk8
services:
- redis
- docker
environment:
LOGLEVEL: WARN
GALEB_DISABLE_SCHED: true
GALEB_DB_USER: ubuntu
GALEB_DB_URL: jdbc:mysql://localhost/circle_test
GALEB_DB_SHOWSQL: false
GALEB_DB_DRIVER: com.mysql.jdbc.Driver
GALEB_DB_DIALECT: org.hibernate.dialect.MySQL5Dialect
GALEB_DB_DDL_AUTO: validate
test:
override:
- docker info
- docker run -d -p 61616:61616 -e ARTEMIS_USERNAME=guest -e ARTEMIS_PASSWORD=guest -e ARTEMIS_MIN_MEMORY=512M -e ARTEMIS_MAX_MEMORY=1024M -e ARTEMIS_PERF_JOURNAL=AUTO --name myartemis vromero/activemq-artemis:1.5.4
- docker ps -a
- docker inspect myartemis
- mvn test