mirror of
https://github.com/emanuele-f/PCAPdroid.git
synced 2026-06-16 21:10:57 +08:00
22 lines
503 B
YAML
22 lines
503 B
YAML
name: Debug build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
- uses: actions/setup-java@v1
|
|
with:
|
|
java-version: '11'
|
|
- run: ./gradlew test
|
|
- run: ./gradlew assembleDebug -PdoNotStrip
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: PCAPdroid build ${{github.sha}}
|
|
path: app/build/outputs/apk/debug/app-debug.apk
|
|
retention-days: 7
|