kopia lustrzana https://github.com/ge0rg/aprsdroid
Fixes
rodzic
f7737f5717
commit
98c7b56ca1
|
@ -17,6 +17,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: set up JDK 11
|
- name: set up JDK 11
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
|
@ -24,6 +25,12 @@ jobs:
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
cache: gradle
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Load build outputs
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: build
|
||||||
|
key: build-${{ github.sha }}
|
||||||
|
|
||||||
- name: Create properties file with empty API key
|
- name: Create properties file with empty API key
|
||||||
run: echo mapsApiKey="\"${{ secrets.mapsApiKey }}\"" >> local.properties
|
run: echo mapsApiKey="\"${{ secrets.mapsApiKey }}\"" >> local.properties
|
||||||
|
|
||||||
|
@ -42,6 +49,25 @@ jobs:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: set up JDK 11
|
||||||
|
uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
java-version: '11'
|
||||||
|
distribution: 'adopt'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Load build outputs
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: build
|
||||||
|
key: build-${{ github.sha }}
|
||||||
|
|
||||||
- name: Run Unit Tests
|
- name: Run Unit Tests
|
||||||
run: ./gradlew test --stacktrace
|
run: ./gradlew test --stacktrace
|
||||||
|
|
||||||
|
@ -61,6 +87,25 @@ jobs:
|
||||||
target: [ default, google_apis ]
|
target: [ default, google_apis ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: recursive
|
||||||
|
|
||||||
|
- name: set up JDK 11
|
||||||
|
uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
java-version: '11'
|
||||||
|
distribution: 'adopt'
|
||||||
|
cache: gradle
|
||||||
|
|
||||||
|
- name: Load build outputs
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: build
|
||||||
|
key: build-${{ github.sha }}
|
||||||
|
|
||||||
- name: Run Instrumented Tests
|
- name: Run Instrumented Tests
|
||||||
uses: reactivecircus/android-emulator-runner@v2
|
uses: reactivecircus/android-emulator-runner@v2
|
||||||
with:
|
with:
|
||||||
|
|
Ładowanie…
Reference in New Issue