-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba6c2b3
commit 17de1b0
Showing
12 changed files
with
301 additions
and
44 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,14 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
jobs: | ||
android-lint: | ||
uses: ./.github/workflows/gradle-task.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
task: lint | ||
task-name: Run Android Lint Check |
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,18 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
variant: | ||
description: 'Variant to build' | ||
required: true | ||
type: string | ||
jobs: | ||
assemble: | ||
uses: ./.github/workflows/gradle-task.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
task: assemble${{inputs.variant}} | ||
task-name: Assemble ${{inputs.module}} - ${{inputs.variant}} |
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,40 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
task: | ||
description: 'Task to run' | ||
required: true | ||
type: string | ||
task-name: | ||
description: 'Task Name' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
task: | ||
name: ${{ inputs.task-name }} | ||
runs-on: [ self-hosted, cko-mobile-default-runners-github-runners ] | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Cache Gradle and wrapper | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
- name: Run unit tests with Gradle | ||
run: ./gradlew :${{ inputs.module }}:${{ inputs.task }} |
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,14 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
jobs: | ||
ktlint: | ||
uses: ./.github/workflows/gradle-task.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
task: ktlint | ||
task-name: Run Ktlint Check |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
jobs: | ||
unit-test: | ||
uses: ./.github/workflows/gradle-task.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
task: test | ||
task-name: Run Unit Tests |
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,77 @@ | ||
name: Verification | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
module: | ||
description: 'Module to run' | ||
required: true | ||
type: string | ||
run-android-lint: | ||
description: 'Should Run Android Lint' | ||
required: false | ||
type: boolean | ||
default: false | ||
run-ktlint: | ||
description: 'Should Run Ktlint' | ||
required: false | ||
type: boolean | ||
default: false | ||
run-assemble: | ||
description: 'Should Run Assemble' | ||
required: false | ||
type: boolean | ||
default: false | ||
assemble-variant: | ||
description: 'Variant to Run Assemble' | ||
required: false | ||
type: string | ||
default: '' | ||
run-unit-test: | ||
description: 'Should Run Unit Tests' | ||
required: false | ||
type: boolean | ||
default: false | ||
run-ui-test: | ||
description: 'Should Run UI Tests' | ||
required: false | ||
type: boolean | ||
default: false | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
android-lint: | ||
if: ${{ inputs.run-android-lint }} | ||
uses: ./.github/workflows/android-lint.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
ktlint: | ||
if: ${{ inputs.run-ktlint }} | ||
uses: ./.github/workflows/ktlint.yml | ||
with: | ||
module: ${{ inputs.module }} | ||
assemble: | ||
if: ${{ inputs.run-assemble }} | ||
uses: ./.github/workflows/assemble-module.yml | ||
# Add ktlint after ktlint is applied to all modules | ||
needs: android-lint | ||
with: | ||
module: ${{ inputs.module }} | ||
variant: ${{ inputs.assemble-variant }} | ||
unit-test: | ||
if: ${{ inputs.run-unit-test }} | ||
uses: ./.github/workflows/unit-test.yml | ||
# Add ktlint after ktlint is applied to all modules | ||
needs: android-lint | ||
with: | ||
module: ${{ inputs.module }} | ||
ui-test: | ||
if: ${{ inputs.run-ui-test }} | ||
uses: ./.github/workflows/ui-test.yml | ||
# Add ktlint after ktlint is applied to all modules | ||
needs: android-lint | ||
with: | ||
module: ${{ inputs.module }} |
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,28 @@ | ||
name: Verify App | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [ opened, synchronize, reopened ] | ||
branches: [ master, "bugfix/*", "feature/*", "release/*" ] | ||
paths: | ||
- 'app/**' | ||
- 'checkout/**' | ||
- 'frames/**' | ||
- 'buildSrc/**' | ||
- 'build.gradle.kt' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
verify-app: | ||
uses: ./.github/workflows/verification-flow.yml | ||
with: | ||
module: app | ||
run-android-lint: true | ||
run-assemble: true | ||
run-unit-test: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Verify Checkout | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [ opened, synchronize, reopened ] | ||
branches: [ master, "bugfix/*", "feature/*", "release/*" ] | ||
paths: | ||
- 'checkout/**' | ||
- 'buildSrc/**' | ||
- 'build.gradle.kt' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
verify-app: | ||
uses: ./.github/workflows/verification-flow.yml | ||
with: | ||
module: checkout | ||
run-android-lint: true | ||
run-ktlint: true | ||
run-assemble: true | ||
run-unit-test: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Verify Example App Frames | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [ opened, synchronize, reopened ] | ||
branches: [ master, "bugfix/*", "feature/*", "release/*" ] | ||
paths: | ||
- 'checkout/**' | ||
- 'frames/**' | ||
- 'example_app_frames/**' | ||
- 'buildSrc/**' | ||
- 'build.gradle.kt' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
verify-app: | ||
uses: ./.github/workflows/verification-flow.yml | ||
with: | ||
module: example_app_frames | ||
run-android-lint: true | ||
run-ktlint: true | ||
run-assemble: true | ||
run-unit-test: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Verify Frames | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
types: [ opened, synchronize, reopened ] | ||
branches: [ master, "bugfix/*", "feature/*", "release/*" ] | ||
paths: | ||
- 'checkout/**' | ||
- 'frames/**' | ||
- 'buildSrc/**' | ||
- 'build.gradle.kt' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
verify-app: | ||
uses: ./.github/workflows/verification-flow.yml | ||
with: | ||
module: frames | ||
run-android-lint: true | ||
run-ktlint: true | ||
run-assemble: true | ||
run-unit-test: true | ||
run-ui-test: 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