Browse Source

travis: don't build binaries on ln branch

regtest_lnd
SomberNight 6 years ago
parent
commit
dac2bf1064
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 9
      .travis.yml

9
.travis.yml

@ -27,7 +27,8 @@ after_success:
- coveralls - coveralls
jobs: jobs:
include: include:
- stage: binary builds - if: branch = master # don't build binaries on lightning branch
stage: binary builds
name: "Windows build" name: "Windows build"
sudo: true sudo: true
language: c language: c
@ -41,7 +42,8 @@ jobs:
script: script:
- sudo docker run --name electrum-wine-builder-cont -v $PWD:/opt/wine64/drive_c/electrum --rm --workdir /opt/wine64/drive_c/electrum/contrib/build-wine electrum-wine-builder-img ./build.sh - sudo docker run --name electrum-wine-builder-cont -v $PWD:/opt/wine64/drive_c/electrum --rm --workdir /opt/wine64/drive_c/electrum/contrib/build-wine electrum-wine-builder-img ./build.sh
after_success: true after_success: true
- name: "Android build" - if: branch = master # don't build binaries on lightning branch
name: "Android build"
language: python language: python
python: 3.7 python: 3.7
env: env:
@ -63,7 +65,8 @@ jobs:
- ls -la bin - ls -la bin
- if [ $(ls bin | grep -c Electrum-*) -eq 0 ]; then exit 1; fi - if [ $(ls bin | grep -c Electrum-*) -eq 0 ]; then exit 1; fi
after_success: true after_success: true
- name: "MacOS build" - if: branch = master # don't build binaries on lightning branch
name: "MacOS build"
os: osx os: osx
language: c language: c
env: env:

Loading…
Cancel
Save