Prepare next development version (#468)
Signed-off-by: mramotar <mramotar@dropbox.com> Signed-off-by: mramotar <mramotar@dropbox.com>
This commit is contained in:
parent
59a20f91dd
commit
53a974e423
3 changed files with 21 additions and 22 deletions
35
.github/workflows/.ci_test_and_publish.yml
vendored
35
.github/workflows/.ci_test_and_publish.yml
vendored
|
@ -13,7 +13,7 @@ on:
|
|||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'MobileNativeFoundation/Store' && github.ref == 'refs/heads/main'
|
||||
if: github.repository == 'MobileNativeFoundation/Store' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/store5')
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
@ -42,7 +42,6 @@ jobs:
|
|||
env:
|
||||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
|
||||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 30
|
||||
|
@ -54,20 +53,20 @@ jobs:
|
|||
- 29
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up our JDK environment
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: zulu
|
||||
java-version: 11
|
||||
- name: Run tests
|
||||
uses: reactivecircus/android-emulator-runner@v2
|
||||
with:
|
||||
api-level: 29
|
||||
script: ./gradlew check --rerun-tasks --stacktrace
|
||||
env:
|
||||
API_LEVEL: ${{ matrix.api-level }}
|
||||
- name: Upload code coverage
|
||||
run: bash <(curl -s https://codecov.io/bash)
|
||||
- name: Set up our JDK environment
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: zulu
|
||||
java-version: 11
|
||||
- name: Run tests
|
||||
uses: reactivecircus/android-emulator-runner@v2
|
||||
with:
|
||||
api-level: 29
|
||||
script: ./gradlew check --rerun-tasks --stacktrace
|
||||
env:
|
||||
API_LEVEL: ${{ matrix.api-level }}
|
||||
- name: Upload code coverage
|
||||
run: bash <(curl -s https://codecov.io/bash)
|
||||
|
|
|
@ -17,7 +17,7 @@ ext.versions = [
|
|||
mavenPublishPlugin : "0.22.0",
|
||||
|
||||
cache : '3.1.1',
|
||||
store : '4.0.5',
|
||||
store : '4.0.7',
|
||||
|
||||
// UI libs.
|
||||
picasso : '2.5.2',
|
||||
|
@ -52,8 +52,8 @@ ext.versions = [
|
|||
]
|
||||
|
||||
ext.libraries = [
|
||||
store : "com.dropbox.mobile.store:store4:$versions.store",
|
||||
filesystem : "com.dropbox.mobile.store:filesystem4:$versions.store",
|
||||
store : "org.mobilenativefoundation.store:store4:$versions.store",
|
||||
filesystem : "org.mobilenativefoundation.store:filesystem4:$versions.store",
|
||||
// depend on cache via jar to avoid building java code
|
||||
cache : "com.nytimes.android:cache3:$versions.cache",
|
||||
// UI libs.
|
||||
|
|
|
@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
|
|||
|
||||
# POM file
|
||||
GROUP = org.mobilenativefoundation.store
|
||||
VERSION_NAME = 4.0.7
|
||||
VERSION_NAME = 4.0.8-SNAPSHOT
|
||||
POM_PACKAGING = pom
|
||||
POM_DESCRIPTION = Store4 is built with Kotlin Coroutines
|
||||
|
||||
|
|
Loading…
Reference in a new issue