blob: 9e2fcdf3f414b06d30d40784610f3d4cfaec1ab5 [file] [log] [blame]
#!/bin/bash
set -e
# Runs host tests for all projects that support KMP except for Compose-specific projects which are
# already covered by androidx_compose_multiplatform.sh
# Must be run on Mac
export ANDROIDX_PROJECTS=INFRAROGUE # TODO: Switch from `INFRAROGUE` to `KMP`
# disable GCP cache, these machines don't have credentials.
export USE_ANDROIDX_REMOTE_BUILD_CACHE=false
echo "Starting $0 at $(date)"
cd "$(dirname $0)"
# Setup simulators
impl/androidx-native-mac-simulator-setup.sh
impl/build.sh darwinBenchmarkResults allHostTests \
--no-configuration-cache \
-Pandroidx.ignoreTestFailures \
-Pandroidx.displayTestOutput=false \
"$@"
echo "Completing $0 at $(date)"