mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-05 02:39:10 +02:00
21 lines
825 B
Bash
Executable file
21 lines
825 B
Bash
Executable file
#!/bin/bash -vex
|
|
|
|
set -x -e
|
|
|
|
echo "running as" $(id)
|
|
|
|
set -v
|
|
|
|
cd $GECKO_PATH
|
|
|
|
. taskcluster/scripts/misc/android-gradle-dependencies/before.sh
|
|
|
|
export MOZCONFIG=mobile/android/config/mozconfigs/android-arm-gradle-dependencies/nightly
|
|
./mach build
|
|
./mach gradle downloadDependencies --no-configuration-cache
|
|
./mach android gradle-dependencies --no-configuration-cache
|
|
./mach gradle -p mobile/android/fenix lint :benchmark:assembleBenchmark
|
|
./mach gradle -p mobile/android/focus-android lint
|
|
./mach gradle -p mobile/android/android-components -Pcoverage detekt lint :components:tooling-lint:test :components:lib-auth:assemble :components:lib-auth:assembleAndroidTest :components:lib-auth:testRelease :components:lib-auth:lintRelease :components:lib-auth:publish
|
|
|
|
. taskcluster/scripts/misc/android-gradle-dependencies/after.sh
|