Browse Source
Update and rename build.yml to github_debug_apk.yml
renovate/org.robolectric-robolectric-4.x
Ammar Githam
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
34 additions and
23 deletions
-
.github/workflows/build.yml
-
.github/workflows/github_debug_apk.yml
|
@ -1,23 +0,0 @@ |
|
|
name: Build |
|
|
|
|
|
|
|
|
|
|
|
on: workflow_dispatch |
|
|
|
|
|
# push: |
|
|
|
|
|
# branches: [ master ] |
|
|
|
|
|
# pull_request: |
|
|
|
|
|
# branches: [ master ] |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
build: |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
- name: set up JDK 1.8 |
|
|
|
|
|
uses: actions/setup-java@v1 |
|
|
|
|
|
with: |
|
|
|
|
|
java-version: 1.8 |
|
|
|
|
|
- name: Grant execute permission for gradlew |
|
|
|
|
|
run: chmod +x gradlew |
|
|
|
|
|
- name: Build with Gradle |
|
|
|
|
|
run: ./gradlew build |
|
|
|
|
@ -0,0 +1,34 @@ |
|
|
|
|
|
name: Build |
|
|
|
|
|
|
|
|
|
|
|
on: workflow_dispatch |
|
|
|
|
|
# push: |
|
|
|
|
|
# branches: [ master ] |
|
|
|
|
|
# pull_request: |
|
|
|
|
|
# branches: [ master ] |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
build: |
|
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
|
|
- name: Checkout |
|
|
|
|
|
uses: actions/checkout@v2 |
|
|
|
|
|
|
|
|
|
|
|
- name: set up JDK 1.8 |
|
|
|
|
|
uses: actions/setup-java@v1 |
|
|
|
|
|
with: |
|
|
|
|
|
java-version: 1.8 |
|
|
|
|
|
|
|
|
|
|
|
- name: Grant execute permission for gradlew |
|
|
|
|
|
run: chmod +x gradlew |
|
|
|
|
|
|
|
|
|
|
|
- name: Build Github debug apk |
|
|
|
|
|
run: ./gradlew assembleGithubDebug --stacktrace |
|
|
|
|
|
|
|
|
|
|
|
# Create artifact |
|
|
|
|
|
- name: Create apk artifact |
|
|
|
|
|
uses: actions/upload-artifact@v1 |
|
|
|
|
|
with: |
|
|
|
|
|
name: app |
|
|
|
|
|
path: app/build/outputs/apk/github/debug/app-github-debug.apk |