-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create a snapshot workflow (#22)
- Loading branch information
Showing
6 changed files
with
151 additions
and
12 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,70 @@ | ||
name: Snapshot Release | ||
on: | ||
workflow_dispatch: {} | ||
env: | ||
SIGNING_KEY_FILE_PATH: /home/runner/secretKey.gpg | ||
|
||
jobs: | ||
lint: | ||
uses: ./.github/workflows/lint.yml | ||
|
||
test: | ||
uses: ./.github/workflows/release-test.yml | ||
|
||
build: | ||
uses: ./.github/workflows/build.yml | ||
secrets: | ||
SIGNING_KEY_FILE: ${{ secrets.SIGNING_KEY_FILE }} | ||
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
|
||
# after build and unit tests are finished, publish all modules at once | ||
# to help reduce the probability of failure when interacting with sonatype servers | ||
release: | ||
name: Snapshot Release | ||
needs: [lint, test, build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
with: | ||
# pulls all commits (needed for semantic release to correctly version) | ||
fetch-depth: '0' | ||
persist-credentials: false | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'microsoft' | ||
|
||
- name: Decode Signing Key | ||
uses: ./.github/actions/decode_signing_key_action | ||
with: | ||
signing_key_file: ${{ secrets.SIGNING_KEY_FILE }} | ||
signing_file_path: ${{ env.SIGNING_KEY_FILE_PATH }} | ||
|
||
- name: Set snapshot environment variable | ||
run: echo "USE_SNAPSHOT=true" >> $GITHUB_ENV | ||
|
||
- name: Install Semantic Release Dependencies | ||
run: npm install | ||
|
||
- name: GitHub Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
SONATYPE_NEXUS_USERNAME: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | ||
SONATYPE_NEXUS_PASSWORD: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | ||
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | ||
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
SIGNING_KEY_FILE: ${{ env.SIGNING_KEY_FILE_PATH }} | ||
run: npx semantic-release@21 | ||
|
||
- name: Publish to Maven | ||
uses: ./.github/actions/publish_all_modules | ||
with: | ||
sonatype_user: ${{ secrets.SONATYPE_SDKS_NEXUS_USERNAME }} | ||
sonatype_password: ${{ secrets.SONATYPE_SDKS_NEXUS_PASSWORD }} | ||
signing_key_id: ${{ secrets.SIGNING_KEY_ID }} | ||
signing_key_password: ${{ secrets.SIGNING_KEY_PASSWORD }} | ||
signing_key_file: ${{ env.SIGNING_KEY_FILE_PATH }} |
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,68 @@ | ||
name: Test Release | ||
on: [workflow_dispatch, workflow_call] | ||
|
||
concurrency: | ||
group: test-${{ github.event.number }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test_unit: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'microsoft' | ||
cache: gradle | ||
|
||
- name: Run Unit Tests | ||
run: ./gradlew testReleaseUnitTest | ||
continue-on-error: false | ||
|
||
test_unit_coverage: | ||
name: Unit Tests Coverage | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'microsoft' | ||
cache: gradle | ||
|
||
- name: Run Unit Tests Coverage | ||
run: ./gradlew koverXmlReportDebug | ||
|
||
test_instrumentation: | ||
name: Instrumentation Tests | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'microsoft' | ||
cache: gradle | ||
|
||
- name: Run Instrumentation Tests | ||
uses: ReactiveCircus/android-emulator-runner@v2 | ||
with: | ||
api-level: 23 | ||
target: google_apis | ||
arch: x86_64 | ||
script: ./gradlew connectedCheck --info | ||
continue-on-error: true |
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
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