mirror of
https://github.com/dzeiocom/crashhandler.git
synced 2025-08-14 15:51:59 +00:00
feat: Add crash saving (#12)
This commit is contained in:
37
.github/scripts/gradlew_recursive.sh
vendored
37
.github/scripts/gradlew_recursive.sh
vendored
@@ -1,37 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright (C) 2020 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
set -xe
|
||||
|
||||
# Default Gradle settings are not optimal for Android builds, override them
|
||||
# here to make the most out of the GitHub Actions build servers
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Xms4g -Xmx4g"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -XX:+HeapDumpOnOutOfMemoryError"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Dorg.gradle.daemon=false"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Dorg.gradle.workers.max=2"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Dkotlin.incremental=false"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Dkotlin.compiler.execution.strategy=in-process"
|
||||
GRADLE_OPTS="$GRADLE_OPTS -Dfile.encoding=UTF-8"
|
||||
export GRADLE_OPTS
|
||||
|
||||
# Crawl all gradlew files which indicate an Android project
|
||||
# You may edit this if your repo has a different project structure
|
||||
for GRADLEW in `find . -name "gradlew"` ; do
|
||||
SAMPLE=$(dirname "${GRADLEW}")
|
||||
# Tell Gradle that this is a CI environment and disable parallel compilation
|
||||
bash "$GRADLEW" -p "$SAMPLE" -Pci --no-parallel --stacktrace $@
|
||||
done
|
||||
|
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
@@ -27,16 +27,14 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: set up JDK 11
|
||||
- name: set up JDK 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'adopt'
|
||||
java-version: '17'
|
||||
distribution: 'temurin'
|
||||
cache: gradle
|
||||
- name: Build project
|
||||
run: |
|
||||
chmod +x .github/scripts/gradlew_recursive.sh
|
||||
.github/scripts/gradlew_recursive.sh assembleDebug
|
||||
run: ./gradlew assembleDebug
|
||||
- name: Zip artifacts
|
||||
run: zip -r assemble.zip . -i '**/build/*.apk' '**/build/*.aab' '**/build/*.aar' '**/build/*.so'
|
||||
- name: Upload artifacts
|
||||
|
Reference in New Issue
Block a user