mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Make lxml install faster by disabling optimizations
This averagely saves 30 secs or so.
This commit is contained in:
parent
50b912cbaf
commit
1a4035a5d8
1 changed files with 2 additions and 1 deletions
|
|
@ -1,7 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
echo "The shell is $SHELL"
|
echo "The shell is $SHELL"
|
||||||
set -e
|
set -e
|
||||||
PIP_INSTALL="pip install --use-mirrors --upgrade"
|
[ "$IS_TRAVIS" = "true" ] && CFLAGS=-O0 pip install lxml || true
|
||||||
|
PIP_INSTALL="pip install --use-mirrors"
|
||||||
$PIP_INSTALL --editable .
|
$PIP_INSTALL --editable .
|
||||||
$PIP_INSTALL -r requirements.txt
|
$PIP_INSTALL -r requirements.txt
|
||||||
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
[ -n "$DAV_SERVER" ] || DAV_SERVER=radicale_filesystem
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue