-
Notifications
You must be signed in to change notification settings - Fork 31
/
.travis.yml
28 lines (21 loc) · 837 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
language: bash
services: docker
install:
- make docker-build
after_success:
# Log that the build worked, because we all need some good news
- echo "Success running lightning-integration"
jobs:
include:
- name: 'Build eclair'
script:
- docker run lnintegration bash -c "make update-eclair bin/eclair.jar && py.test -v test.py -k EclairNode"
- name: 'Build clightning'
script:
- docker run lnintegration bash -c "make update-clightning bin/lightningd && py.test -v test.py -k LightningNode"
- name: 'Build lnd'
script:
- docker run lnintegration bash -c "make update-lnd bin/lnd && py.test -v test.py -k LndNode"
- name: 'Build ptarmigan'
script:
- docker run lnintegration bash -c "make update-ptarmigan bin/ptarmd && py.test -v test.py -k PtarmNode"