Skip to content

Commit eacb183

Browse files
committed
Fixed workflow
1 parent c4f0dec commit eacb183

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed
Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
1-
name: Wolfboot CMake Build Workflow
2-
1+
name: Wolfboot CMake Build
32
on:
4-
push:
5-
branches: [ 'master', 'main', 'release/**' ]
63
pull_request:
74
branches: [ '*' ]
8-
95
jobs:
10-
build-cmake:
6+
cmake_automated_test:
117
runs-on: ubuntu-latest
12-
138
steps:
149
- uses: actions/checkout@v4
1510
with:
1611
submodules: true
1712

18-
- name: Install cross compilers
13+
- name: Install requirements
1914
run: |
2015
sudo sed -i 's|http://azure.archive.ubuntu.com/ubuntu/|http://mirror.arizona.edu/ubuntu/|g' /etc/apt/sources.list
2116
sudo apt-get update
@@ -24,7 +19,6 @@ jobs:
2419
- name: Run CMake
2520
run: |
2621
rm -rf ./build
27-
cmake -B build -DWOLFBOOT_TARGET=stm32u5 -DBUILD_TEST_APPS=yes -DWOLFBOOT_PARTITION_BOOT_ADDRESS=0x08100000 -DWOLFBOOT_SECTOR_SIZE=0x2000 -DWOLFBOOT_PARTITION_SIZE=0x20000 -DWOLFBOOT_PARTITION_UPDATE_ADDRESS=0x817F000 -DWOLFBOOT_PARTITION_SWAP_ADDRESS=0x81FE000 -DNO_MPU=yes
28-
29-
- name: Build wolfBoot
22+
cmake -B build -DWOLFBOOT_TARGET=stm32u5 -DBUILD_TEST_APPS=yes -DWOLFBOOT_PARTITION_BOOT_ADDRESS=0x08100000 -DWOLFBOOT_SECTOR_SIZE=0x2000 -DWOLFBOOT_PARTITION_SIZE=0x20000 -DWOLFBOOT_PARTITION_UPDATE_ADDRESS=0x817F000-DWOLFBOOT_PARTITION_SWAP_ADDRESS=0x81FE000 -DNO_MPU=yes
23+
- name: Build wolfBoot
3024
run: make -C build

0 commit comments

Comments
 (0)