Skip to content

Commit 3180718

Browse files
committed
Fixed workflow
1 parent c4f0dec commit 3180718

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Wolfboot CMake Build Workflow
1+
name: Wolfboot CMake Build
22

33
on:
44
push:
@@ -7,15 +7,15 @@ on:
77
branches: [ '*' ]
88

99
jobs:
10-
build-cmake:
10+
cmake_automated_build:
1111
runs-on: ubuntu-latest
1212

1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
1616
submodules: true
1717

18-
- name: Install cross compilers
18+
- name: Install requirements
1919
run: |
2020
sudo sed -i 's|http://azure.archive.ubuntu.com/ubuntu/|http://mirror.arizona.edu/ubuntu/|g' /etc/apt/sources.list
2121
sudo apt-get update
@@ -24,7 +24,6 @@ jobs:
2424
- name: Run CMake
2525
run: |
2626
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-
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
2928
- name: Build wolfBoot
3029
run: make -C build

0 commit comments

Comments
 (0)