-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (65 loc) · 1.97 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
# https://github.com/marketplace/actions/docker-layer-caching
jobs:
test-bash:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: make test_bashscripts
build-start-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use .env.example
run: cp .env.example .env
- name: Get python Container
run: docker pull python:3.9
- name: Build
run: |
docker-compose build
docker images
- name: Build docker-compose stack
run: make start
- name: verify backend is up
run: curl http://localhost:8888/api/docs
- name: Run backend tests
run: make test
- name: docker
run: |
docker-compose logs
docker-compose ps
docker ps -a
ls -la
- name: Run backend search tests
run: make test_search
- name: Browse Benchmark - response times in ms
run: cat benchmark_browse.txt
- name: Search Benchmark - response times in ms
run: cat benchmark_search.txt
- name: Log Dump
if: always()
run: docker-compose logs
- name: Run Integration Tests
run: echo TODO-TODO-TODO-TODO-TODO-TODO-TODO-TODO-TODO-TODO-TODO-TODO
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1-node16
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/[email protected]
- name: Push Images to ECR
run: |
.github/retag-and-push.sh navigator-backend latest
env:
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}