2017-10-18 21:56:40 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
./gradlew build \
|
2025-03-27 20:56:08 -07:00
|
|
|
-x :library:test:testDebugUnitTest \
|
|
|
|
|
:library:test:assembleDebugUnitTest \
|
|
|
|
|
-x :library:testDebugUnitTest \
|
|
|
|
|
:library:assembleDebugUnitTest \
|
|
|
|
|
-x :annotation:ksp:test:testDebugUnitTest \
|
|
|
|
|
:annotation:ksp:test:assembleDebugUnitTest \
|
|
|
|
|
-x :third_party:disklrucache:testDebugUnitTest \
|
|
|
|
|
:third_party:disklrucache:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:cronet:testDebugUnitTest \
|
|
|
|
|
:integration:cronet:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:gifencoder:testDebugUnitTest \
|
|
|
|
|
:integration:gifencoder:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:ktx:testDebugUnitTest \
|
|
|
|
|
:integration:ktx:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:concurrent:testDebugUnitTest \
|
|
|
|
|
:integration:concurrent:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:volley:testDebugUnitTest \
|
|
|
|
|
:integration:volley:assembleDebugUnitTest \
|
|
|
|
|
-x :integration:sqljournaldiskcache:testDebugUnitTest \
|
|
|
|
|
:integration:sqljournaldiskcache:assembleDebugUnitTest \
|
|
|
|
|
-x :third_party:gif_decoder:testDebugUnitTest \
|
|
|
|
|
:third_party:gif_decoder:assembleDebugUnitTest \
|
|
|
|
|
:samples:flickr:build \
|
|
|
|
|
:samples:giphy:build \
|
|
|
|
|
:samples:contacturi:build \
|
|
|
|
|
:samples:gallery:build \
|
|
|
|
|
:samples:imgur:build \
|
|
|
|
|
:samples:svg:build \
|
2021-03-17 11:25:04 -07:00
|
|
|
:instrumentation:assembleAndroidTest \
|
|
|
|
|
:benchmark:assembleAndroidTest \
|
2022-08-18 00:59:09 -07:00
|
|
|
:glide:releaseJavadoc \
|
2022-07-19 12:14:37 -07:00
|
|
|
:annotation:ksp:test:test \
|
2022-08-18 01:41:05 -07:00
|
|
|
:integration:ktx:apiCheck \
|
2023-03-08 11:23:57 -08:00
|
|
|
:annotation:ksp:integrationtest:test \
|
2017-12-31 13:58:49 -08:00
|
|
|
--parallel
|