Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 37ea5d4

Browse files

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

.github/ci-gradle.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# Copyright © 2014-2020 The Android Password Store Authors. All Rights Reserved.
3+
# SPDX-License-Identifier: GPL-3.0-only
4+
#
5+
6+
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

.github/workflows/deploy_snapshot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
env:
1818
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }}
1919

20+
- name: Copy CI gradle.properties
21+
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
22+
2023
- name: Generate cache key
2124
run: ./.github/checksum.sh checksum.txt
2225

.github/workflows/pull_request.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
if: ${{ steps.service-changed.outputs.result == 'true' }}
3030
uses: actions/checkout@v2
3131

32+
- name: Copy CI gradle.properties
33+
if: ${{ steps.service-changed.outputs.result == 'true' }}
34+
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
35+
3236
- name: Generate cache key
3337
if: ${{ steps.service-changed.outputs.result == 'true' }}
3438
run: ./.github/checksum.sh checksum.txt

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
env:
1818
ENCRYPT_KEY: ${{ secrets.ENCRYPT_KEY }}
1919

20+
- name: Copy CI gradle.properties
21+
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
22+
2023
- name: Generate cache key
2124
run: ./.github/checksum.sh checksum.txt
2225

0 commit comments

Comments
 (0)