-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
executable file
·72 lines (56 loc) · 1.59 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
64
65
66
67
68
69
70
71
72
language: java
install: true
jdk:
- openjdk11
branches:
only:
- main
# # Travis CI 서버의 Home
cache:
directories:
- $HOME/.m2
before_install:
- chmod +x ./travis-ci.sh
script: ./travis-ci.sh
before_deploy:
- zip -r master *
- mkdir -p master
- mv master.zip master/master.zip
services:
- mysql
- redis-server
- postgres
before_script:
- sudo mysql -u root -e "CREATE USER 'ds4ouj' IDENTIFIED BY 'hong971220!';"
- sudo mysql -u root -e 'CREATE DATABASE `webRTC`;'
- sudo mysql -u root -e 'GRANT ALL ON *.* TO `ds4ouj`;'
- sudo mysql -u root -e 'FLUSH PRIVILEGES;'
deploy:
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: springboot-webrtc-build # S3 버킷
region: ap-northeast-2
skip_cleanup: true
acl: private # zip 파일 접근을 private로 설정
local_dir: master
wait-until-deployed: true
on:
branch: main
- provider: codedeploy
access_key_id: $AWS_ACCESS_KEY # Travis repo settings에 설정된 값
secret_access_key: $AWS_SECRET_KEY # Travis repo settings에 설정된 값
bucket: springboot-webrtc-build # S3 버킷
key: master.zip # 빌드 파일을 압축해서 전달
bundle_type: zip
application: springboot-webrtc # 웹 콘솔에서 등록한 CodeDeploy 어플리케이션
deployment_group: master-group # 웹 콘솔에서 등록한 CodeDeploy 배포 그룹
region: ap-northeast-2
wait-until-deployed: true
on:
branch: main
# # CI 실행 완료시 메일로 알람
notifications:
email:
recipients: