forked from gitcoinco/web
-
Notifications
You must be signed in to change notification settings - Fork 0
234 lines (204 loc) · 7.87 KB
/
ci-stage.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
name: Build & Deploy App to Staging
on:
workflow_dispatch:
inputs:
# commit hash (for frontend deploy to fleek)
commit:
description: "Branch/Commit ref"
default: "origin/master"
type: string
pulumi_deploy:
description: "Run the Pulumi Deployment"
default: false
type: boolean
jobs:
build-and-test:
name: Build and Test
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest
outputs:
dockerTag: ${{ steps.compute.outputs.docker_tag }}
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:11.5
# Provide the password for postgres
env:
POSTGRES_DB: testdb
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
redis:
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
env:
DJANGO_SETTINGS_MODULE: app.settings
SUPRESS_DEBUG_TOOLBAR: 1
GITCOIN_API_USER: ${{ secrets.GITCOIN_API_USER }}
GITHUB_API_TOKEN: ${{ secrets.GITCOIN_API_TOKEN }}
POLYGONSCAN_API_KEY: ${{ secrets.POLYGONSCAN_API_KEY }}
# steps to perform in job
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Reset to commit
run: |
git fetch
git reset --hard ${{ inputs.commit }}
- name: Use Node.js 14
uses: actions/setup-node@v2
with:
node-version: 14.20.1
cache: "yarn"
- name: Use Python 3.7
uses: "actions/setup-python@v2"
with:
python-version: 3.7
cache: "pip"
- name: Setup Env
run: |
echo "PYTHONPATH=/home/runner/work/web/web/app" >> $GITHUB_ENV
cp app/app/ci.env app/app/.env
pip install pip==20.0.2 setuptools wheel --upgrade
- name: Fetch and Install GeoIP database files
run: |
sudo apt-get update && sudo apt-get install -y libmaxminddb-dev libsodium-dev libsecp256k1-dev
cp dist/*.gz ./
gunzip GeoLite2-City.mmdb.tar.gz && gunzip GeoLite2-Country.mmdb.tar.gz
tar -xvf GeoLite2-City.mmdb.tar && tar -xvf GeoLite2-Country.mmdb.tar
sudo mkdir -p /opt/GeoIP/
sudo mv GeoLite2-City_20200128/*.mmdb /opt/GeoIP/
sudo mv GeoLite2-Country_20200128/*.mmdb /opt/GeoIP/
- name: Install libvips, Node, and Python dependencies
run: |
sudo apt-get install -y libvips libvips-dev
node --version
yarn install
pip install -r requirements/test.txt
yarn run eslint
yarn run stylelint
(cd app; python ./manage.py collectstatic --noinput --disable-collectfast)
- name: Run management commands
run: |
python app/manage.py migrate
python app/manage.py fetch_gas_prices
- name: Compute some values
id: compute
run: |
echo "::set-output name=docker_tag::gitcoin/web:${GITHUB_SHA: -10}"
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Deploy to Docker Hub 🚀
uses: docker/build-push-action@v2
with:
context: ./
file: ./Dockerfile-prod
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: |
${{ steps.compute.outputs.docker_tag }}
gitcoin/web:staging-gha
cache-from: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/web:buildcache-staging
cache-to: type=registry,ref=${{ secrets.DOCKER_USERNAME }}/web:buildcache-staging,mode=max
deploy:
name: Deploy
needs: build-and-test
environment: staging
runs-on: ubuntu-latest
env:
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
PULUMI_CONFIG_PASSPHRASE: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
DB_NAME: ${{ secrets.DB_NAME }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_USER: ${{ secrets.DB_USER }}
DOCKER_GTC_WEB_IMAGE: ${{ needs.build-and-test.outputs.dockerTag }}
DATADOG_KEY: ${{ secrets.DATADOG_KEY }}
ROUTE_53_ZONE: ${{ secrets.ROUTE53_ZONE_ID }}
DOMAIN: ${{ secrets.DOMAIN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
GITHUB_CLIENT_ID: ${{ secrets.GTC_GITHUB_CLIENT_ID }}
GITHUB_CLIENT_SECRET: ${{ secrets.GTC_GITHUB_CLIENT_SECRET }}
TEMP_DATABASE: ${{ secrets.TEMP_DATABASE }}
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Reset to commit
run: |
git fetch
git reset --hard ${{ inputs.commit }}
- name: Use Node.js
uses: actions/setup-node@v2
with:
# node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: infra/staging/package-lock.json
- name: Install Pulumi Dependencies
# Install pulumi dependencies
# Select the new pulumi stack
run: |
npm install
pulumi stack select -c gitcoin/staging/dev
pulumi config -s gitcoin/staging/dev set aws:region us-west-2 --non-interactive
working-directory: infra/staging
- name: Run Pulumi Preview
uses: pulumi/actions@v3
id: pulumi
with:
command: preview
stack-name: gitcoin/staging/dev
upsert: false
work-dir: infra/staging
- name: Run Pulumi Up
uses: pulumi/actions@v3
if: inputs.pulumi_deploy
with:
command: up
stack-name: gitcoin/staging/dev
upsert: false
work-dir: infra/staging
# The static files are already bundled and located in the folder /code/app/static in the container
- name: Copy static files to bucket
run: |
mkdir static_files_to_deploy
mkdir docker_bin
cat <<EOT >> docker_bin/static_files.sh
#!/bin/bash
cp -Rf /code/app/static/* /static_files_to_deploy/
EOT
docker run -v $(pwd)/static_files_to_deploy:/static_files_to_deploy -v $(pwd)/docker_bin:/code/app/bin -e DATABASE_URL=${{ steps.pulumi.outputs.rdsConnectionUrl }} ${{ needs.build-and-test.outputs.dockerTag }} sh /code/app/bin/static_files.sh
echo "Syncing to bucket: ${{ steps.pulumi.outputs.bucketName }}"
echo "Source folder: $(pwd)/static_files_to_deploy"
echo "aws cli version $(aws --version)"
echo " aws s3 sync $(pwd)/static_files_to_deploy s3://${{ steps.pulumi.outputs.bucketName }}/static --acl public-read --delete"
aws s3 sync $(pwd)/static_files_to_deploy s3://${{ steps.pulumi.outputs.bucketName }}/static --acl public-read --delete
env:
# We need AWS_EC2_METADATA_DISABLED, because: https://github.com/actions/checkout/issues/440
AWS_EC2_METADATA_DISABLED: true
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
BUNDLE_USE_CHECKSUM: 'false'