mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
Add dependency checksums and signing key information
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
c52bce4b24
commit
93f9de72db
5 changed files with 14282 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -54,3 +54,4 @@ fastlane/Fastfile
|
|||
|
||||
# python
|
||||
**/__pycache__/
|
||||
/gradle/verification-keyring.gpg
|
||||
|
|
|
@ -11,6 +11,7 @@ android.nonFinalResIds=false
|
|||
|
||||
# JVM arguments to optimize heap usage, enable heap dump on out-of-memory errors, and set the file encoding
|
||||
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
||||
org.gradle.dependency.verification.console=verbose
|
||||
kotlin.daemon.jvmargs=-Xmx4096m
|
||||
org.gradle.caching=true
|
||||
org.gradle.parallel=true
|
||||
|
|
7005
gradle/verification-keyring.keys
Normal file
7005
gradle/verification-keyring.keys
Normal file
File diff suppressed because it is too large
Load diff
7274
gradle/verification-metadata.xml
Normal file
7274
gradle/verification-metadata.xml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -8,7 +8,7 @@ if [ -z "$PR_NUMBER" ] ; then
|
|||
fi
|
||||
|
||||
export BRANCH=$(scripts/analysis/getBranchBase.sh "$PR_NUMBER" | sed 's/"//g')
|
||||
if [ "$(git diff --name-only "origin/$BRANCH" | grep -cE "^app/src|screenshots|build.gradle|.drone.yml")" -eq 0 ] ; then
|
||||
if [ "$(git diff --name-only "origin/$BRANCH" | grep -cE "^app/src|screenshots|build.gradle|.drone.yml|gradle")" -eq 0 ] ; then
|
||||
echo "No source files changed"
|
||||
exit 1
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue