mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-09 22:05:57 +00:00
b9706b1e80
* Fix Android testing CI job, we don't use the packager since we build the Release bundle * Test run on Docker-cph-01 or Docker-cph-02
12 lines
287 B
Bash
Executable File
12 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
export REALM_CORE_VERSION=$(./scripts/download-core.sh --version)
|
|
echo "Core Version: $REALM_CORE_VERSION"
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ -n "$REALM_BUILD_ANDROID" ]; then
|
|
(cd react-native/android && ./gradlew publishAndroid -PbuildWithSync=true)
|
|
fi
|