forked from hexlet-codebattle/codebattle
-
Notifications
You must be signed in to change notification settings - Fork 0
154 lines (129 loc) · 4.29 KB
/
master.yml
File metadata and controls
154 lines (129 loc) · 4.29 KB
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
name: Build master
on:
push:
branches:
- master
jobs:
build:
if: github.repository == 'hexlet-codebattle/codebattle'
runs-on: ubuntu-latest
services:
db:
image: postgres:12-alpine
ports: ['5432:5432']
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Notify Rollbar of deploy start
uses: rollbar/github-deploy-action@2.0.0
id: rollbar_pre_deploy
with:
environment: 'production'
version: ${{ github.sha }}
status: 'started'
env:
ROLLBAR_ACCESS_TOKEN: ${{ secrets.ROLLBAR_ACCESS_TOKEN }}
ROLLBAR_USERNAME: ${{ secrets.ROLLBAR_USERNAME }}
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: '25.0.3'
elixir-version: '1.13.4'
- uses: actions/cache@v2
with:
path: services/app/deps
key: v3-${{ runner.os }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
v3-${{ runner.os }}-deps-
- uses: actions/cache@v2
with:
path: services/app/_build
key: v3-${{ runner.os }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
v3-${{ runner.os }}-build-
- uses: actions/cache@v2
with:
path: ~/.mix
key: v3-${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/services/app/mix.lock')) }}
restore-keys: |
v3-${{ runner.os }}-mix-
- name: Get deps
run: mix deps.get
working-directory: ./services/app
- name: Mix deps.compile
run: mix compile
working-directory: ./services/app
env:
MIX_ENV: test
- name: Mix format
run: mix format --check-formatted
working-directory: ./services/app
env:
MIX_ENV: test
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install yarn dependencies
run: yarn install --froze-lockfile
working-directory: ./services/app
- name: Eslint
run: yarn lint
working-directory: ./services/app
- name: Run jest
run: yarn test
working-directory: ./services/app
- name: Compile
run: mix compile
working-directory: ./services/app
env:
MIX_ENV: test
- name: Setup db
run: mix ecto.create && mix ecto.migrate
working-directory: ./services/app
env:
MIX_ENV: test
- name: Mix tests
run: make test
env:
MIX_ENV: test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./services/app/cover/excoveralls.json
fail_ci_if_error: true
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- run: make docker-build-app
- run: make docker-push-app
- name: Notify Rollbar of deploy finish
uses: rollbar/github-deploy-action@1.1.0
id: rollbar_post_deploy
with:
environment: 'production'
version: ${{ github.sha }}
status: 'succeeded'
env:
ROLLBAR_ACCESS_TOKEN: ${{ secrets.ROLLBAR_ACCESS_TOKEN }}
ROLLBAR_USERNAME: ${{ secrets.ROLLBAR_USERNAME }}
# stop integratoin tests on CI becaues of https://github.com/hexlet-codebattle/codebattle/runs/580337561?check_suite_focus=true
# - name: Pull dockers
# run: mix dockers.pull
# working-directory: ./services/app
# env:
# MIX_ENV: test
# - name: Run code checkers tests
# run: make test-code-checkers
# env:
# MIX_ENV: test