Browse Source

Cache dependencies for Travis build

Also: * Move temporary directory to /tmp
      * Remove files with wrong hash (so we don't have to remove them manually)
3.1
Johann Bauer 7 years ago
parent
commit
10057b18de
No known key found for this signature in database GPG Key ID: 84F1BF925B1F484D
  1. 5
      .travis.yml
  2. 11
      contrib/build-wine/prepare-wine.sh

5
.travis.yml

@ -6,7 +6,9 @@ python:
install:
- pip install -r contrib/requirements/requirements-travis.txt
cache:
- pip
- pip: true
- directories:
- /tmp/electrum-build
script:
- tox
after_success:
@ -24,5 +26,6 @@ jobs:
- sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
- sudo apt-get update -qq
- sudo apt-get install -qq winehq-stable dirmngr gnupg2 p7zip-full
before_script: ls -lah /tmp/electrum-build
script: ./contrib/build-wine/build.sh
after_success: true

11
contrib/build-wine/prepare-wine.sh

@ -42,6 +42,7 @@ verify_hash() {
return 0
else
echo "$file $actual_hash (unexpected hash)" >&2
rm "$file"
exit 1
fi
}
@ -54,7 +55,7 @@ download_if_not_exist() {
}
# Let's begin!
cd `dirname $0`
here=$(dirname $(readlink -e $0))
set -e
# Clean up Wine environment
@ -64,11 +65,9 @@ echo "done"
wine 'wineboot'
echo "Cleaning tmp"
mkdir -p tmp
echo "done"
mkdir -p /tmp/electrum-build
cd tmp
cd /tmp/electrum-build
# Install Python
# note: you might need "sudo apt-get install dirmngr" for the following
@ -94,7 +93,7 @@ $PYTHON -m pip install pywin32-ctypes==0.1.2
# install PySocks
$PYTHON -m pip install win_inet_pton==1.0.1
$PYTHON -m pip install -r ../../deterministic-build/requirements-binaries.txt
$PYTHON -m pip install -r $here/../deterministic-build/requirements-binaries.txt
# Install PyInstaller
$PYTHON -m pip install https://github.com/ecdsa/pyinstaller/archive/fix_2952.zip

Loading…
Cancel
Save