-
-
Notifications
You must be signed in to change notification settings - Fork 33
44 lines (42 loc) · 1.34 KB
/
master.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
name: CI and CD
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build pepy image
run: docker build --file infrastructure/dockerfiles/pepy/Dockerfile --tag ghcr.io/psincraian/pepy:latest .
- name: Push image
run: docker push ghcr.io/psincraian/pepy:latest
- name: Build pepy-test image
run: docker build --file infrastructure/dockerfiles/pepy-test/Dockerfile --tag ghcr.io/psincraian/pepy-test:latest .
- name: Push image
run: docker push ghcr.io/psincraian/pepy-test:latest
tests:
name: Tests
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Start environment
run: DOCKER_TAG=latest make start-containers
- name: Run tests
run: DOCKER_TAG=latest make params=-T tests