-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from velocitycareerlabs/dev-to-rc
Dev to rc
- Loading branch information
Showing
5 changed files
with
223 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: WalletAndroid-SDK-Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- rc | ||
- dev | ||
env: | ||
PACKAGE_TYPE: "aar" | ||
GRADLE_VERSION: "7.5" | ||
JAVA_VERSION: "17" | ||
ARTIFACT_PATH: "VCL/build/outputs" | ||
ANDROID_NEXUS_SIGNING_KEY_ID: ${{ secrets.ANDROID_NEXUS_SIGNING_KEY_ID }} | ||
ANDROID_NEXUS_SIGNING_PWD: ${{ secrets.ANDROID_NEXUS_SIGNING_PWD }} | ||
ANDROID_NEXUS_OSSRH_USERNAME: ${{ secrets.ANDROID_NEXUS_OSSRH_USERNAME }} | ||
ANDROID_NEXUS_OSSRH_PWD: ${{ secrets.ANDROID_NEXUS_OSSRH_PWD }} | ||
ANDROID_NEXUS_STAGING_PROFILE_ID: ${{ secrets.ANDROID_NEXUS_STAGING_PROFILE_ID }} | ||
ANDROID_NEXUS_PRIVATE_KEY: ${{ secrets.ANDROID_NEXUS_PRIVATE_KEY }} | ||
jobs: | ||
test-android-sdk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Run test | ||
- name: Run Test | ||
run: ./gradlew test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: WalletAndroid-SDK | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- rc | ||
- dev | ||
env: | ||
PACKAGE_TYPE: "aar" | ||
GRADLE_VERSION: "7.5" | ||
JAVA_VERSION: "17" | ||
ARTIFACT_PATH: "VCL/build/outputs" | ||
ANDROID_NEXUS_SIGNING_KEY_ID: ${{ secrets.ANDROID_NEXUS_SIGNING_KEY_ID }} | ||
ANDROID_NEXUS_SIGNING_PWD: ${{ secrets.ANDROID_NEXUS_SIGNING_PWD }} | ||
ANDROID_NEXUS_OSSRH_USERNAME: ${{ secrets.ANDROID_NEXUS_OSSRH_USERNAME }} | ||
ANDROID_NEXUS_OSSRH_PWD: ${{ secrets.ANDROID_NEXUS_OSSRH_PWD }} | ||
ANDROID_NEXUS_STAGING_PROFILE_ID: ${{ secrets.ANDROID_NEXUS_STAGING_PROFILE_ID }} | ||
ANDROID_NEXUS_PRIVATE_KEY: ${{ secrets.ANDROID_NEXUS_PRIVATE_KEY }} | ||
jobs: | ||
test-android-sdk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Run test | ||
- name: Run Test | ||
run: ./gradlew test | ||
|
||
build-android-sdk: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- test-android-sdk | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Gradle Assemble | ||
- name: Gradle Assemble | ||
run: ./gradlew assemble${{ env.RELEASE_TAG }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'Release' ) || 'Rc' }} | ||
# Convert artifact to lowercase | ||
- name: Rename artifact to lowercase | ||
run: mv ${{ env.ARTIFACT_PATH}}/${{ env.PACKAGE_TYPE }}/VCL-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} ${{ env.ARTIFACT_PATH }}/${{ env.PACKAGE_TYPE }}/vcl-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'release' ) || 'rc' }} | ||
# Show Me Builded packages | ||
- name: Show Me Builded packages | ||
run: ls -al ${{ env.ARTIFACT_PATH}}/${{ env.PACKAGE_TYPE }}/ | ||
# Publish Main/Rc | ||
- name: Publish Main/Rc | ||
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' }} | ||
run: ./gradlew publish${{ env.RELEASE_TAG }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'Release' ) || 'Rc' }} | ||
# Upload Artifacts | ||
- name: Upload Artifact | ||
if: success() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: vcl-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} | ||
path: ${{ env.ARTIFACT_PATH }}/${{ env.PACKAGE_TYPE }} | ||
if-no-files-found: error | ||
retention-days: 1 | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'release' ) || 'rc' }} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,9 @@ android { | |
defaultConfig { | ||
minSdk 24 | ||
targetSdk 33 | ||
// Increase version for release | ||
versionName "1.20.1" | ||
versionCode 115 | ||
versionCode 116 | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles "consumer-rules.pro" | ||
} | ||
|
@@ -41,6 +42,13 @@ android { | |
shrinkResources false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
rc { | ||
buildConfigField "String", "VERSION_NAME", "\"${defaultConfig.versionName}-rc\"" | ||
buildConfigField "int", "VERSION_CODE", "${defaultConfig.versionCode}" | ||
minifyEnabled false | ||
shrinkResources false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
|
@@ -96,6 +104,62 @@ artifacts { | |
afterEvaluate { | ||
publishing { | ||
publications { | ||
rc(MavenPublication) { | ||
groupId getGroupId() | ||
artifactId getArtifactId() | ||
|
||
// define rc version name | ||
def vers = getVersionName() | ||
def rcSuffix = rootProject.ext.rcSuffix | ||
version = "${vers}-${rcSuffix}" | ||
|
||
// Two artifacts, the `aar` (or `jar`) and the sources | ||
if (project.plugins.findPlugin("com.android.library")) { | ||
from components.release | ||
} else { | ||
from components.java | ||
} | ||
|
||
artifact androidSourcesJar | ||
|
||
// Mostly self-explanatory metadata | ||
pom { | ||
name = getArtifactId() | ||
// Library description | ||
description = 'Velocity Career Labs Android library' | ||
// Library Github URL | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid' | ||
licenses { | ||
license { | ||
name = 'Apache License 2.0' | ||
// Library license | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid/blob/dev/VCL/LICENSE' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'velocitycareerlabs' | ||
name = 'Michael Avoyan' | ||
email = '[email protected]' | ||
} | ||
} | ||
|
||
scm { | ||
// Library info on Github | ||
connection = 'scm:github.com/velocitycareerlabs/WalletAndroid.git' | ||
developerConnection = 'scm:git:ssh://github.com/velocitycareerlabs/WalletAndroid.git' | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid' | ||
} | ||
} | ||
signing { | ||
useInMemoryPgpKeys( | ||
rootProject.ext.signingKeyId, | ||
rootProject.ext.signingPrivateKey, | ||
rootProject.ext.signingPassword, | ||
) | ||
// sign publishing.publications | ||
} | ||
} | ||
release(MavenPublication) { | ||
groupId getGroupId() | ||
artifactId getArtifactId() | ||
|
@@ -139,20 +203,19 @@ afterEvaluate { | |
url = 'https://github.com/velocitycareerlabs/WalletAndroid' | ||
} | ||
} | ||
signing { | ||
useInMemoryPgpKeys( | ||
rootProject.ext.signingKeyId, | ||
rootProject.ext.signingPrivateKey, | ||
rootProject.ext.signingPassword, | ||
) | ||
// sign publishing.publications | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
signing { | ||
useInMemoryPgpKeys( | ||
rootProject.ext.signingKeyId, | ||
rootProject.ext.signingPrivateKey, | ||
rootProject.ext.signingPassword, | ||
) | ||
sign publishing.publications | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters