-
Notifications
You must be signed in to change notification settings - Fork 12
98 lines (94 loc) · 3.04 KB
/
thermocycler-gen2.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
name: 'Thermocycler Gen2 build/test'
on:
pull_request:
paths:
- 'stm32-modules/thermocycler-gen2/**/*'
- 'stm32-modules/common/**/*'
- 'stm32-modules/include/common/**/*'
- 'stm32-modules/include/thermocycler-gen2/**/*'
- 'cmake/**/*'
- 'CMakeLists.txt'
- 'stm32-modules/CMakeLists.txt'
- 'CMakePresets.json'
- '.clang-format'
- '.clang-tidy'
- 'cpp-utils/**/*'
- '.github/workflows/thermocycler-gen2-create-release.yaml'
paths_ignore:
- 'cmake/Arduino*'
push:
paths:
- 'stm32-modules/thermocycler-gen2/**/*'
- 'stm32-modules/common/**/*'
- 'stm32-modules/include/common/**/*'
- 'stm32-modules/include/thermocycler-gen2/**/*'
- 'cmake/**/*'
- 'CMakeLists.txt'
- 'stm32-modules/CMakeLists.txt'
- 'CMakePresets.json'
- '.clang-format'
- '.clang-tidy'
- '.github/workflows/thermocycler-gen2.yaml'
paths_ignore:
- 'cmake/Arduino*'
branches:
- '*'
tags:
- 'thermocycler-gen2@*'
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
cross-compile-check:
name: 'Cross-Compile/Check'
runs-on: 'ubuntu-20.04'
timeout-minutes: 10
steps:
- uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- uses: 'actions/cache@v2'
with:
key: stm32-cross-${{ secrets.MODULES_STM32_CACHE_VERSION }}-${{ hashFiles('cmake/*') }}
restore-keys: stm32-cross-${{ secrets.MODULES_STM32_CACHE_VERSION }}-
path: './stm32-tools'
- name: 'Configure'
run: cmake --preset=stm32-cross .
- name: 'Format'
run: cmake --build --preset cross --target thermocycler-gen2-format-ci
- name: 'Lint'
run: cmake --build --preset cross --target thermocycler-gen2-lint
- name: 'Build startup app'
run: cmake --build --preset cross --target thermocycler-gen2-startup
- name: 'Build'
run: cmake --build --preset cross --target thermocycler-gen2-hex
- name: 'Build full image'
run: cmake --build --preset cross --target thermocycler-gen2-image-hex
- name: 'Build full image binary'
run: cmake --build --preset cross --target thermocycler-gen2-image-bin
host-compile-test:
name: 'Host-Compile/Test'
runs-on: 'ubuntu-20.04'
timeout-minutes: 10
env:
CC: gcc-10
CXX: g++-10
steps:
- run: |
sudo apt update
sudo apt install gcc-10 g++-10
- uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- uses: 'actions/cache@v2'
with:
path: './stm32-tools'
key: stm32-host-${{ secrets.MODULES_STM32_CACHE_VERSION }}-${{ hashFiles('cmake/*') }}
restore-keys: stm32-host-${{ secrets.MODULES_STM32_CACHE_VERSION }}-
- name: 'Configure'
run: cmake --preset=stm32-host .
- name: 'Build Simulator'
run: cmake --build --preset host --target thermocycler-gen2-simulator
- name: 'Build and Test'
run: cmake --build --preset thermocycler-gen2-tests