2019-07-19 09:41:36 -07:00
|
|
|
language: minimal
|
|
|
|
|
2019-09-23 15:40:28 -07:00
|
|
|
# broken:
|
|
|
|
# - PKG=electrs STABLE=0
|
|
|
|
|
2019-07-19 09:41:36 -07:00
|
|
|
# Retry installing nix due to nondeterministic error
|
|
|
|
# Fatal error: glibc detected an invalid stdio handle
|
|
|
|
# see:
|
|
|
|
# https://github.com/nh2/static-haskell-nix/pull/27#issuecomment-502652181
|
|
|
|
# https://github.com/nixos/nix/issues/2733
|
|
|
|
install: |
|
|
|
|
(for i in {1..5}; do bash <(curl https://nixos.org/nix/install) && exit 0; done; exit 1)
|
|
|
|
. /home/travis/.nix-profile/etc/profile.d/nix.sh
|
|
|
|
nix-env -iA cachix -f https://cachix.org/api/v1/install
|
|
|
|
cachix use nix-bitcoin
|
|
|
|
[ $STABLE -eq 1 ] && export NIX_PATH="nixpkgs=$(nix eval --raw -f pkgs/nixpkgs-pinned.nix nixpkgs)"
|
|
|
|
[ $STABLE -eq 0 ] && export NIX_PATH="nixpkgs=$(nix eval --raw -f pkgs/nixpkgs-pinned.nix nixpkgs-unstable)"
|
|
|
|
VER="$(nix eval nixpkgs.lib.version)"
|
|
|
|
env:
|
|
|
|
matrix:
|
|
|
|
- PKG=nodeinfo STABLE=1
|
|
|
|
- PKG=hwi STABLE=1
|
|
|
|
- PKG=hwi STABLE=0
|
|
|
|
- PKG=lightning-charge STABLE=1
|
|
|
|
- PKG=lightning-charge STABLE=0
|
|
|
|
- PKG=nanopos STABLE=1
|
|
|
|
- PKG=nanopos STABLE=0
|
|
|
|
- PKG=spark-wallet STABLE=1
|
|
|
|
- PKG=elementsd STABLE=1
|
|
|
|
- PKG=elementsd STABLE=0
|
|
|
|
- PKG=electrs STABLE=1
|
2019-10-13 13:27:08 -07:00
|
|
|
- PKG=liquid-swap STABLE=1
|
2019-07-19 09:41:36 -07:00
|
|
|
script: |
|
|
|
|
printf '%s (%s)\n' "$NIX_PATH" "$VER"
|
2019-09-23 16:21:34 -07:00
|
|
|
nix-build -A $PKG
|