Build Everything #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) 2023 Ferrous Systems | |
# SPDX-License-Identifier: MIT OR Apache-2.0 | |
name: build-everything | |
run-name: Build Everything | |
on: [push] | |
jobs: | |
build-threadx-staticlib: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install tools | |
run: | | |
sudo apt-get update -y && sudo apt-get -y install cmake gcc gcc-arm-none-eabi build-essential ninja-build | |
- name: Compile ThreadX for Cortex-M4 | |
run: | | |
cd threadx | |
cmake -Bbuild_m4 -GNinja -DCMAKE_TOOLCHAIN_FILE=cmake/cortex_m4.cmake | |
cmake --build ./build_m4 | |
- uses: actions/upload-artifact@master | |
with: | |
name: threadx-cm4 | |
path: threadx/build_m4/libthreadx.a | |
build-demo-app: | |
runs-on: ubuntu-latest | |
needs: build-threadx-staticlib | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: actions/download-artifact@master | |
with: | |
name: threadx-cm4 | |
path: threadx/build/libthreadx.a # Where build.rs expects it | |
- name: Add rustup target | |
run: | | |
rustup target add thumbv7em-none-eabi | |
- name: Check Demo App | |
run: | | |
cd demo-app | |
cargo check --target=thumbv7em-none-eabi | |
- name: Build Demo App | |
run: | | |
cd demo-app | |
cargo build --target=thumbv7em-none-eabi --release |