mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-21 11:01:10 +00:00
15 lines
777 B
Bash
Executable file
15 lines
777 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export MAVEN_OPTS="-Dmaven.repo.local=/tmp/.m2/repository -DdependencyLocationsEnabled=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=25 -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false"
|
|
export MAVEN_CACHE="gs://feast-templocation-kf-feast/.m2.2020-11-17.tar"
|
|
|
|
infra/scripts/download-maven-cache.sh --archive-uri ${MAVEN_CACHE} --output-dir /tmp
|
|
apt-get update && apt-get install -y redis-server postgresql libpq-dev
|
|
|
|
make build-java-no-tests REVISION=develop
|
|
python -m pip install --upgrade pip setuptools wheel pip-tools
|
|
make install-python
|
|
python -m pip install -qr tests/requirements.txt
|
|
export FEAST_USAGE="False"
|
|
|
|
su -p postgres -c "PATH=$PATH HOME=/tmp pytest -v tests/e2e/ --feast-version develop"
|