mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 07:25:08 +01:00
11e24620b8
This commit fixes the GitHub Actions build running out of disk space by removing the existing NDK image as we already install that manually.
68 lines
1.5 KiB
YAML
68 lines
1.5 KiB
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
JVM_OPTS: -Xmx6G
|
|
|
|
steps:
|
|
- name: Git Checkout
|
|
uses: actions/checkout@v1
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Restore Gradle Cache
|
|
uses: actions/cache@v1.0.3
|
|
with:
|
|
path: /root/.gradle/
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Restore CXX Cache
|
|
uses: actions/cache@v1.0.3
|
|
with:
|
|
path: app/.cxx/
|
|
key: ${{ runner.os }}-cxx-${{ hashFiles('**/CMakeLists.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-cxx-
|
|
|
|
- name: Setup Environment for Gradle
|
|
run: chmod +x gradlew
|
|
|
|
- name: Android Lint
|
|
run: ./gradlew --stacktrace lint
|
|
|
|
- name: Upload Lint Report
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: lint-result.html
|
|
path: app/build/reports/lint-results.html
|
|
|
|
- name: Android Assemble
|
|
run: ./gradlew assemble
|
|
|
|
- name: Upload Debug APK
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: app-debug.apk
|
|
path: app/build/outputs/apk/debug/
|
|
|
|
- name: Upload Release APK
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: app-release.apk
|
|
path: app/build/outputs/apk/release/
|
|
|
|
- name: Upload R8 Mapping
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: mapping.txt
|
|
path: app/build/outputs/mapping/release/
|
|
|
|
- name: Delete Build Folder
|
|
run: rm -rf app/build/
|