-
Notifications
You must be signed in to change notification settings - Fork 4
82 lines (78 loc) · 2.54 KB
/
labyrinth.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
name: labyrinth
on: push
jobs:
web-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./web-client
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Lint
run: |
docker build --target lint .
- name: Run tests
run: |
docker build --target test .
algolibs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Run tests
run: |
docker build --target algolibs-test --file docker/backend.Dockerfile .
backend:
runs-on: ubuntu-latest
needs: [algolibs]
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Lint
run: |
docker build --target lint --file docker/backend.Dockerfile .
- name: Run tests
run: |
docker build --target test --file docker/backend.Dockerfile .
release:
runs-on: ubuntu-latest
needs: [web-client, algolibs, backend]
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push web-client image
uses: docker/build-push-action@v2
with:
context: ./web-client
file: ./web-client/Dockerfile
push: true
tags: julianarz/labyrinth-web-client:latest
- name: Build and push backend image
uses: docker/build-push-action@v2
with:
context: ./
file: ./docker/backend.Dockerfile
push: true
tags: julianarz/labyrinth-backend:latest