Skip to content

✅ CI

✅ CI #39

Workflow file for this run

# 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-24.04
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: 📥 Install Conan 2.11.0
run: pip3 install conan==2.11.0
- 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: 🔝 Extract "mod-lpc40-v5-Debug.bin" to repo root
# run: cp build/micromod/mod-lpc40-v5/Debug/app.elf.bin mod-lpc40-v5-Debug.bin
# - name: 🏗️ Build app using "mod-lpc40-v5" [Release]
# run: conan build . -pr mod-lpc40-v5 -pr arm-gcc-12.3
# - name: 🔝 Extract "mod-lpc40-v5-Release.bin" to repo root
# run: cp build/micromod/mod-lpc40-v5/Release/app.elf.bin mod-lpc40-v5-Release.bin
- 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: 🔝 Extract "mod-stm32f1-v4-Debug.bin" to repo root
run: cp build/micromod/mod-stm32f1-v4/Debug/app.elf.bin mod-stm32f1-v4-Debug.bin
- name: 🏗️ Build app using "mod-stm32f1-v4" [Release]
run: conan build . -pr mod-stm32f1-v4 -pr arm-gcc-12.3
- 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.bin
- name: 🏗️ Build app using "mod-stm32f1-v5" [Debug]
run: conan build . -pr mod-stm32f1-v5 -pr arm-gcc-12.3 -s build_type=Debug
- name: 🔝 Extract "mod-stm32f1-v5-Debug.bin" to repo root
run: cp build/micromod/mod-stm32f1-v5/Debug/app.elf.bin mod-stm32f1-v5-Debug.bin
- name: 🏗️ Build app using "mod-stm32f1-v5" [Release]
run: conan build . -pr mod-stm32f1-v5 -pr arm-gcc-12.3
- name: 🔝 Extract "mod-stm32f1-v5-Release.elf.bin" to repo root
run: cp build/micromod/mod-stm32f1-v5/Release/app.elf.bin mod-stm32f1-v5-Release.bin
- name: 🚀 Push Binaries to Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
mod-stm32f1-v4-Debug.bin
mod-stm32f1-v4-Release.bin
mod-stm32f1-v5-Debug.bin
mod-stm32f1-v5-Release.bin
# - name: 🚀 Push Binaries to Release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')
# with:
# files: |
# mod-lpc40-v5-Debug.bin
# mod-lpc40-v5-Release.bin
# mod-stm32f1-v4-Debug.bin
# mod-stm32f1-v4-Release.bin
# mod-stm32f1-v5-Debug.bin
# mod-stm32f1-v5-Release.bin