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:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
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:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
@ -42,7 +42,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
|
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
|
||||||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
|
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
|
@ -54,20 +53,20 @@ jobs:
|
||||||
- 29
|
- 29
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Set up our JDK environment
|
- name: Set up our JDK environment
|
||||||
uses: actions/setup-java@v2
|
uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: zulu
|
distribution: zulu
|
||||||
java-version: 11
|
java-version: 11
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
uses: reactivecircus/android-emulator-runner@v2
|
uses: reactivecircus/android-emulator-runner@v2
|
||||||
with:
|
with:
|
||||||
api-level: 29
|
api-level: 29
|
||||||
script: ./gradlew check --rerun-tasks --stacktrace
|
script: ./gradlew check --rerun-tasks --stacktrace
|
||||||
env:
|
env:
|
||||||
API_LEVEL: ${{ matrix.api-level }}
|
API_LEVEL: ${{ matrix.api-level }}
|
||||||
- name: Upload code coverage
|
- name: Upload code coverage
|
||||||
run: bash <(curl -s https://codecov.io/bash)
|
run: bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
|
@ -17,7 +17,7 @@ ext.versions = [
|
||||||
mavenPublishPlugin : "0.22.0",
|
mavenPublishPlugin : "0.22.0",
|
||||||
|
|
||||||
cache : '3.1.1',
|
cache : '3.1.1',
|
||||||
store : '4.0.5',
|
store : '4.0.7',
|
||||||
|
|
||||||
// UI libs.
|
// UI libs.
|
||||||
picasso : '2.5.2',
|
picasso : '2.5.2',
|
||||||
|
@ -52,8 +52,8 @@ ext.versions = [
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.libraries = [
|
ext.libraries = [
|
||||||
store : "com.dropbox.mobile.store:store4:$versions.store",
|
store : "org.mobilenativefoundation.store:store4:$versions.store",
|
||||||
filesystem : "com.dropbox.mobile.store:filesystem4:$versions.store",
|
filesystem : "org.mobilenativefoundation.store:filesystem4:$versions.store",
|
||||||
// depend on cache via jar to avoid building java code
|
// depend on cache via jar to avoid building java code
|
||||||
cache : "com.nytimes.android:cache3:$versions.cache",
|
cache : "com.nytimes.android:cache3:$versions.cache",
|
||||||
// UI libs.
|
// UI libs.
|
||||||
|
|
|
@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
|
||||||
|
|
||||||
# POM file
|
# POM file
|
||||||
GROUP = org.mobilenativefoundation.store
|
GROUP = org.mobilenativefoundation.store
|
||||||
VERSION_NAME = 4.0.7
|
VERSION_NAME = 4.0.8-SNAPSHOT
|
||||||
POM_PACKAGING = pom
|
POM_PACKAGING = pom
|
||||||
POM_DESCRIPTION = Store4 is built with Kotlin Coroutines
|
POM_DESCRIPTION = Store4 is built with Kotlin Coroutines
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue