WIP: Yttrium integration #20
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
name: Assemble Debug Project | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
concurrency: | |
# Support push/pr as event types with different behaviors each: | |
# 1. push: queue up builds by branch | |
# 2. pr: only allow one run per PR | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.ref_name }} | |
# If there is already a workflow running for the same pull request, cancel it | |
# For non-PR triggers queue up builds | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build_sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
architecture: x86_64 | |
- name: Cache Gradle | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Fetch Properties File | |
env: | |
SECRETS_PROPERTIES: ${{ secrets.SECRETS_PROPERTIES }} | |
run: echo $SECRETS_PROPERTIES | base64 --decode > secrets.properties | |
- name: Prepare Artifacts | |
run: ./gradlew downloadYttriumArtifacts | |
- name: Assemble Debug Project | |
env: | |
WC_CLOUD_PROJECT_ID: ${{ secrets.WC_CLOUD_PROJECT_ID }} | |
NOTIFY_INTEGRATION_TESTS_PROJECT_ID: ${{ secrets.NOTIFY_INTEGRATION_TESTS_PROJECT_ID }} | |
NOTIFY_INTEGRATION_TESTS_SECRET: ${{ secrets.NOTIFY_INTEGRATION_TESTS_SECRET }} | |
# See if we can build out the list of sample project instead of manually adding them here | |
run: ./gradlew assembleDebug -x :sample:wallet:assembleDebug -x :sample:dapp:assembleDebug -x :sample:common:assembleDebug -x :sample:modal:assembleDebug | |
- name: Stop Gradle | |
run: ./gradlew --stop |