generated from libhal/libhal-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (72 loc) · 3.23 KB
/
ci.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
83
84
85
86
87
88
89
90
91
# Copyright 2024 Khalil Estell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: ✅ CI
on:
workflow_dispatch:
pull_request:
release:
types:
- published
push:
branches:
- main
schedule:
- cron: "0 12 * * 0"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: 📥 Install Conan 2.2.2
run: pip3 install conan==2.2.2
- name: 📡 Add `libhal` repo to conan remotes
run: conan remote add libhal
https://libhal.jfrog.io/artifactory/api/conan/trunk-conan
- name: 📡 Create and setup default profile
run: conan profile detect --force
- name: 👁️🗨️ Show conan profile
run: conan profile show
- name: Install libhal settings_user.yml
run: conan config install -sf profiles/baremetal/v2 https://github.com/libhal/conan-config.git
- name: Install compiler profiles
run: conan config install -tf profiles -sf conan/profiles/v1 https://github.com/libhal/arm-gnu-toolchain.git
- name: Install MicroMod platform profiles
run: conan config install -sf conan/profiles/v1 -tf profiles https://github.com/libhal/libhal-micromod.git
- name: 🏗️ Build app using "mod-lpc40-v5" [Debug]
run: conan build . -pr mod-lpc40-v5 -pr arm-gcc-12.3 -s build_type=Debug
- name: 🏗️ Build app using "mod-stm32f1-v4" [Debug]
run: conan build . -pr mod-stm32f1-v4 -pr arm-gcc-12.3 -s build_type=Debug
- name: 🏗️ Build app using "mod-lpc40-v5" [Release]
run: conan build . -pr mod-lpc40-v5 -pr arm-gcc-12.3
- name: 🏗️ Build app using "mod-stm32f1-v4" [Release]
run: conan build . -pr mod-stm32f1-v4 -pr arm-gcc-12.3
- name: 🔝 Extract "mod-lpc40-v5-Debug.elf.bin" to repo root
run: cp build/micromod/mod-lpc40-v5/Debug/app.elf.bin mod-lpc40-v5-Debug.elf.bin
- name: 🔝 Extract "mod-lpc40-v5-Release.elf.bin" to repo root
run: cp build/micromod/mod-lpc40-v5/Release/app.elf.bin mod-lpc40-v5-Release.elf.bin
- name: 🔝 Extract "mod-stm32f1-v4-Debug.elf.bin" to repo root
run: cp build/micromod/mod-stm32f1-v4/Debug/app.elf.bin mod-stm32f1-v4-Debug.elf.bin
- name: 🔝 Extract "mod-stm32f1-v4-Release.elf.bin" to repo root
run: cp build/micromod/mod-stm32f1-v4/Release/app.elf.bin mod-stm32f1-v4-Release.elf.bin
- name: 🚀 Push Binaries to Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
mod-lpc40-v5-Debug.elf.bin
mod-lpc40-v5-Release.elf.bin
mod-stm32f1-v4-Debug.elf.bin
mod-stm32f1-v4-Release.elf.bin