Skip to content

Commit fefc0d8

Browse files
committed
Fixed workflow
1 parent c4f0dec commit fefc0d8

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed
Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
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_build:
117
runs-on: ubuntu-latest
128

139
steps:
1410
- uses: actions/checkout@v4
1511
with:
1612
submodules: true
1713

18-
- name: Install cross compilers
14+
- name: Install requirements
1915
run: |
2016
sudo sed -i 's|http://azure.archive.ubuntu.com/ubuntu/|http://mirror.arizona.edu/ubuntu/|g' /etc/apt/sources.list
2117
sudo apt-get update
@@ -24,7 +20,6 @@ jobs:
2420
- name: Run CMake
2521
run: |
2622
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-
23+
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
2924
- name: Build wolfBoot
30-
run: make -C build
25+
run: make -C build

0 commit comments

Comments
 (0)