-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (43 loc) · 1.09 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
language: java
jdk:
- openjdk8
branches:
only:
- master
chche:
directories:
- '$HOME/.m2/repository'
- '$HOME/.gradle'
script: "./gradlew clean build"
before_script:
- chmod a+x gradle/wrapper/gradle-wrapper.jar
before_install:
- chmod +x gradlew
before_deploy:
- zip -r eatda-server *
- mkdir -p deploy
- mv eatda-service.zip deploy/eatda-server.zip
deploy:
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: eatda-build
region: ap-northeast-2
skip_cleanup: true
acl: private
local_dir: deploy
wait-until-deployed: true
- provider: codedeploy
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: eatda-build #s3 버킷 이름
key: eatda-server.zip # 빌드 파일 압축해서 전달
bundle_type: zip
application: EAT-DA # CodeDeploy 어플리케이션
deployment_group: eatda-server-group
region: ap-northeast-2
wait-until-deployed: true
notifications: #CI 완료시 알림갈 이메일 주소
email:
recipients:
- ohhyun1948@gmail.com