From 2e1e955f9fdd06bb4090a3ef1bf82b8873aba3cb Mon Sep 17 00:00:00 2001 From: Khalil Estell Date: Tue, 6 Aug 2024 14:19:15 -0700 Subject: [PATCH] :construction_worker: Add micromods to demo builds --- .github/workflows/ci.yml | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb68ca3..6e398d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: with: compiler_profile_url: https://github.com/libhal/arm-gnu-toolchain.git compiler_profile: v1/arm-gcc-12.3 - platform_profile_url: https://github.com/libhal/libhal-lpc40.git + platform_profile_url: https://github.com/libhal/libhal-arm-mcu.git platform_profile: v2/lpc4074 secrets: inherit @@ -46,6 +46,33 @@ jobs: with: compiler_profile_url: https://github.com/libhal/arm-gnu-toolchain.git compiler_profile: v1/arm-gcc-12.3 - platform_profile_url: https://github.com/libhal/libhal-lpc40.git + platform_profile_url: https://github.com/libhal/libhal-arm-mcu.git platform_profile: v2/lpc4078 secrets: inherit + + demo_check_stm32f103c8: + uses: libhal/ci/.github/workflows/demo_builder.yml@5.x.y + with: + compiler_profile_url: https://github.com/libhal/arm-gnu-toolchain.git + compiler_profile: v1/arm-gcc-12.3 + platform_profile_url: https://github.com/libhal/libhal-arm-mcu.git + platform_profile: v2/stm32f103c8 + secrets: inherit + + demo_check_mod-stm32f1-v4: + uses: libhal/ci/.github/workflows/demo_builder.yml@5.x.y + with: + compiler_profile_url: https://github.com/libhal/arm-gnu-toolchain.git + compiler_profile: v1/arm-gcc-12.3 + platform_profile_url: https://github.com/libhal/libhal-micromod.git + platform_profile: v1/mod-stm32f1-v4 + secrets: inherit + + demo_check_mod-lpc40-v5: + uses: libhal/ci/.github/workflows/demo_builder.yml@5.x.y + with: + compiler_profile_url: https://github.com/libhal/arm-gnu-toolchain.git + compiler_profile: v1/arm-gcc-12.3 + platform_profile_url: https://github.com/libhal/libhal-micromod.git + platform_profile: v1/mod-lpc40-v5 + secrets: inherit