Skip to content

Commit

Permalink
Update github-ci.yml (#3)
Browse files Browse the repository at this point in the history
* Update github-ci.yml

* upload artifacts

* split ci workflow and apk generation
  • Loading branch information
andresmr authored Jul 25, 2023
1 parent d40a434 commit f2a8ffc
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 25 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/generate_apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# This is a basic workflow to help you get started with Actions

name: Generate testing APK

env:
# The name of the main module repository
main_project_module: android

on:
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# Set Current Date As Env Variable
- name: Set current date as env variable
run: echo "date_today=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

# Set Repository Name As Env Variable
- name: Set repository name as env variable
run: echo "repository_name=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
cache: 'gradle'

- name: Change wrapper permissions
run: chmod +x ./gradlew

# Create APK Debug
- name: Build apk debug project (APK) - ${{ env.main_project_module }} module
run: ./gradlew assembleDebug

# Upload Artifact Build
# Noted For Output [main_project_module]/build/outputs/apk/debug/
- name: Upload APK Debug - ${{ env.repository_name }}
uses: actions/upload-artifact@v3
with:
name: ${{ env.date_today }} - ${{ env.playstore_name }} - ${{ env.repository_name }} - APK(s) debug generated
path: ${{ env.main_project_module }}/build/outputs/apk/debug/
42 changes: 17 additions & 25 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
Expand All @@ -13,38 +11,32 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on

runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
# Set java version to 17
- name: set up JDK 17
uses: actions/[email protected]
- name: Set Up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
cache: 'gradle'

- name: Change wrapper permissions
run: chmod +x ./gradlew

# Grant permissions for gradlew
- name: Grant execute permission for gradlew
run: chmod +x gradlew
# Run check style
- name: Kotlin checkstyle
run: ./gradlew ktlintCheck
- name: Run tests

# Run Tests Build
- name: Run gradle tests
run: ./gradlew test

# Run Build Project
# - name: Build gradle project
# run: ./gradlew build

0 comments on commit f2a8ffc

Please sign in to comment.