Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Bug: add no-daemon flag to .aar generation #492

Merged
merged 3 commits into from
Sep 6, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vcx/wrappers/java/ci/buildAar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SCRIPT_DIR="$(cd "$(dirname "${SCRIPT_PATH:-$PWD}")" 2>/dev/null 1>&2 && pwd)"

pushd ${SCRIPT_DIR} # we will work on relative paths from the script directory
pushd ..
./gradlew clean build --project-dir=android -x test #skipping tests because not all of them pass
./gradlew --no-daemon clean build --project-dir=android -x test #skipping tests because not all of them pass
mkdir -p artifacts/aar
pushd android/build/outputs/aar
cp $(ls -t1 | head -n 1) ${SCRIPT_DIR}/../artifacts/aar
Expand Down