Skip to content

Commit

Permalink
chore :: 병렬 ci 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmdhoon2 committed Jul 14, 2024
1 parent 178834e commit 6c179f8
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/android-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'corretto'
java-version: '18'
distribution: 'corretto'

- name: Grant execution permission for gradlew
run: chmod +x gradlew
Expand All @@ -34,5 +34,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 18
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'corretto'

- name: Grant execution permission for gradlew
run: chmod +x gradlew

- name: Create local.properties
run: echo '${{ secrets.LOCAL_PROPERTIES }}' > ./local.properties

- name: Build core module
run: ./gradlew :core:build

0 comments on commit 6c179f8

Please sign in to comment.