-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (52 loc) · 1.92 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language: java
jdk:
- openjdk8
#master 브랜치에 push되었을 때만 수행
branches:
only:
- master
#Travis CI 서버의 Home path
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.gradle'
#master 브랜치에 push되었을 때 수행하는 명령
script: "./gradlew clean build"
#CI 실행 결과를 받을 메일 주소
#추후 이메일외에 Slack또한 추가 예정
notifications:
email:
recipients:
- sencom1028@gmail.com
#배포 이전 수행 작업 정의
before_deploy:
- zip -r lua-skill-server * #lua-skill-server 이름으로 압축
- mkdir -p deploy #deploy dir생성
- mv lua-skill-server.zip deploy/lua-skill-server.zip #압축파일을 deploy dir하위로 이동
#배포 설정
deploy:
- provider: s3
access_key_id: $AWS_ACCESS_KEY # Travis repo settings에 설정된 값
secret_access_key: $AWS_SECRET_KEY # Travis repo settings에 설정된 값
bucket: lua-skill-server-deploy # S3 버킷
region: ap-northeast-2 # region
skip_cleanup: true
acl: public_read
local_dir: deploy # before_deploy에서 생성한 디렉토리, 해당 디렉토리 내용들만 S3로 전송
wait-until-deployed: true
on:
repo: AlteraLab/SecretaryLua #Github 주소
branch: master
- provider: codedeploy
access_key_id: $AWS_ACCESS_KEY # Travis repo settings에 설정된 값
secret_access_key: $AWS_SECRET_KEY # Travis repo settings에 설정된 값
bucket: lua-skill-server-deploy # S3 버킷
key: lua-skill-server.zip # S3 버킷에 저장된 springboot-webservice.zip 파일을 EC2로 배포
bundle_type: zip
application: lua-skill-server # 웹 콘솔에서 등록한 CodeDeploy 어플리케이션
deployment_group: lua-skill-server-group # 웹 콘솔에서 등록한 CodeDeploy 배포 그룹
region: ap-northeast-2
wait-until-deployed: true
on:
repo: AlteraLab/SecretaryLua #Github 주소
branch: master