-
Notifications
You must be signed in to change notification settings - Fork 1
106 lines (90 loc) · 2.55 KB
/
tests.yaml
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
name: Build Tests
on:
pull_request:
branches:
- main
schedule:
- cron: "0 4 * * 4"
jobs:
build-lawndon-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Arduino cli
uses: arduino/setup-arduino-cli@v2
- name: Install libraries
run: |
arduino-cli lib install IBusBM Servo
- name: Lint project
uses: arduino/arduino-lint-action@v2
with:
path: ./lawndon
library-manager: update
- name: Compile Lawndon
uses: arduino/compile-sketches@v1
with:
fqbn: "arduino:avr:mega"
libraries: |
- name: IBusBM
- name: Servo
sketch-paths: |
- ./lawndon
enable-warnings-report: true
verbose: false
cli-compile-flags: |
- --export-binaries
build-lawndon-pi-test:
runs-on: ubuntu-latest
env:
WORKING_DIR: ./pi
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies for UI
working-directory: ${{ env.WORKING_DIR }}
run: |
pnpm install:ui
- name: Build UI
working-directory: ${{ env.WORKING_DIR }}
run: |
pnpm build:ui
- name: Install dependencies for Server
working-directory: ${{ env.WORKING_DIR }}
run: |
pnpm install:server
- name: Build Server
working-directory: ${{ env.WORKING_DIR }}
run: |
pnpm build:server
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --allow-insecure-entitlement security.insecure
install: true
- name: Test Docker build for Server
uses: docker/build-push-action@v6
with:
context: ./pi
file: ./pi/Dockerfile.server
push: false
platforms: linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/lawndon-pi-server:test
- name: Test Docker build for UI
uses: docker/build-push-action@v6
with:
context: ./pi
file: ./pi/Dockerfile.ui
push: false
platforms: linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/lawndon-pi-ui:test