-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (80 loc) · 2.61 KB
/
ebs.yaml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: CI
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.8 environment
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: "3.8"
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Run our unit tests
- name: Run unit tests
run: |
python test_application.py
deploy:
# Only run this job if "build" has ended successfully
needs:
- build
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
# Set up Python 3.8 environment
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: "3.8"
# Set up cache for pip
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache pip
uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Elastic Beanstalk CLI version
- name: Get EB CLI version
run: |
python -m pip install --upgrade pip
pip install awsebcli --upgrade
eb --version
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWSACCESSKEYID }}
aws-secret-access-key: ${{ secrets.AWSSECRETKEY }}
aws-region: us-east-1
# Create the Elastic Beanstalk application
- name: Create EBS application
run: |
eb init -p python-3.8 agile.geosci.ai --region us-east-1
# Deploy to or Create the Elastic Beanstalk environment
- name: Create environment and deploy
run: |
(eb use prod-env && eb status prod-env && eb deploy) || eb create prod-env