Build/add cmake to ports at91sam7 (#560)

* added CMake to AT91SAM7S port example

* Add ports AT91SAM7S and STM32F4xx CMake builds into pipeline
This commit is contained in:
Steve Karg
2024-01-27 16:00:22 -06:00
committed by GitHub
parent ef762118a6
commit 34b1d24bb7
3 changed files with 261 additions and 2 deletions
+19 -2
View File
@@ -161,7 +161,7 @@ jobs:
make clean
make ethernet
ports-arm:
ports-arm-makefile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -171,7 +171,7 @@ jobs:
sudo apt-get install -qq build-essential
sudo apt-get install -qq gcc-arm-none-eabi
sudo apt-get install -qq libnewlib-arm-none-eabi
- name: ports-arm
- name: ports-arm-makefile
run: |
make clean
arm-none-eabi-gcc --version
@@ -179,6 +179,23 @@ jobs:
make stm32f4xx
make at91sam7s
ports-arm-cmake:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Build Environment
run: |
sudo apt-get update -qq
sudo apt-get install -qq build-essential
sudo apt-get install -qq gcc-arm-none-eabi
sudo apt-get install -qq libnewlib-arm-none-eabi
sudo apt-get install -qq cmake
- name: ports-arm-cmake
run: |
arm-none-eabi-gcc --version
make stm32f4xx-cmake
make at91sam7s-cmake
ports-avr:
runs-on: ubuntu-latest
steps: