1. Travis Github 연동
- Travis사이트접속
- Github 계정연동
- Github 프로젝트 연결
2. .travis.yml파일 세팅
.travis.yml파일은 Travis와 연동을 위한 설정 파일이다.
- Path: 프로젝트 최상위
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 언어
language: java
# Java 버전
jdk:
- openjdk11
# Commit시 배포 할 Branch
branches:
only:
- main
# Travis CI 서버의 Home
cache:
directories:
- $HOME/.m2/repository
- $HOME/.gradle
script: ./gradlew clean build
# Travis Build실패시 알림받을 E-mail
notifications:
email:
recipients:
- tkdrl8908@naver.com