You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jobs:
build:
runs-on: ubuntu-lateststeps:
- name: checkoutuses: actions/checkout@v3
- name: set up JDKuses: actions/setup-java@v3with:
java-version: '11'distribution: 'temurin'
- name: grant execute permission for gradlewrun: chmod +x gradlew
- name: gradle buildrun: ./gradlew build
gradle-build-action을 사용하면 gradle build에 사용되는 의존성, 로컬 빌드 캐시 등이 캐싱될 수 있다고 한다.
gradle-build-action의 캐싱 기능을 통해 CI 속도를 더 빠르게 할 수 있다.
다음은 github actions CI 공식문서에서 gradle-build-action을 활용한 예시이다.
The text was updated successfully, but these errors were encountered:
yangdongjue5510
changed the title
[BE] Github Actions CI 스크립트를 gradle-build-action을 통해 개선한다.
[BE] Github Actions 백엔드 CI 스크립트를 gradle-build-action을 통해 개선한다.
Dec 10, 2022
목표
현재는 리눅스 명령어로 gradle build를 하고 있다.
gradle-build-action을 사용하면 gradle build에 사용되는 의존성, 로컬 빌드 캐시 등이 캐싱될 수 있다고 한다.
gradle-build-action의 캐싱 기능을 통해 CI 속도를 더 빠르게 할 수 있다.
다음은 github actions CI 공식문서에서 gradle-build-action을 활용한 예시이다.
주의사항(Optional)
실제로 속도가 빨라지는 지 확인해봐야 한다.
The text was updated successfully, but these errors were encountered: