-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (61 loc) · 1.83 KB
/
ci_edge_interface.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
name: CI edge_interface
run-name: edge_interface CI on branch >> ${{ github.ref_name }} <<
on:
push:
branches:
- main
pull_request:
paths:
- 'edge_interface/**'
jobs:
lint_and_test_on_edge_interface:
name: Run Vue linter
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 12
- name: Install dependencies
run: npm install
working-directory: ./edge_interface
- name: Lint
run: npm run lint
working-directory: ./edge_interface
build_and_push_images:
needs: lint_and_test_on_edge_interface
strategy:
fail-fast: false
matrix:
include:
- context: ./edge_interface
dockerfile: ./edge_interface/Dockerfile
image: ghcr.io/${{ github.repository }}/edge_interface
uses: ./.github/workflows/template_build_and_push_docker_images.yml
with:
context: ${{ matrix.context }}
dockerfile: ${{ matrix.dockerfile }}
image: ${{ matrix.image }}
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
build_and_push_arm_images:
needs: lint_and_test_on_edge_interface
strategy:
fail-fast: false
matrix:
include:
- context: ./edge_interface
dockerfile: ./edge_interface/Dockerfile.raspberrypi
image: ghcr.io/${{ github.repository }}/edge_interface.raspberrypi
uses: ./.github/workflows/template_build_and_push_docker_images.yml
with:
context: ${{ matrix.context }}
dockerfile: ${{ matrix.dockerfile }}
image: ${{ matrix.image }}
arm_build: true
secrets:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}