Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/app_builder2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: 📦 Create Package "${{ inputs.library_dir }}" @ version=latest
if: ${{ inputs.library_dir != '' }}
run: conan create ${{ inputs.library_dir }} -pr ${{ inputs.compiler_profile }} -pr ${{ inputs.platform_profile }} ${{ inputs.extra_conan_arguments }} --version=latest
run: conan create ${{ inputs.library_dir }} -pr:a ${{ inputs.compiler_profile }} -pr:h ${{ inputs.platform_profile }} ${{ inputs.extra_conan_arguments }} --version=latest

- name: 🏗️ Build Application for ${{ inputs.profile }}
run: conan build ${{ inputs.dir }} -pr ${{ inputs.compiler_profile }} -pr ${{ inputs.platform_profile }} ${{ inputs.extra_conan_arguments }}
run: conan build ${{ inputs.dir }} -pr:a ${{ inputs.compiler_profile }} -pr:h ${{ inputs.platform_profile }} ${{ inputs.extra_conan_arguments }}
16 changes: 8 additions & 8 deletions .github/workflows/self_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
with:
repo: libhal/libhal-arm-mcu
dir: demos
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4078
secrets: inherit

Expand All @@ -219,7 +219,7 @@ jobs:
repo: libhal/libhal-expander
dir: demos
library_dir: .
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4078

libhal-actuator-demos-lpc4078:
Expand All @@ -229,7 +229,7 @@ jobs:
with:
repo: libhal/libhal-actuator
dir: demos
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4078
secrets: inherit

Expand All @@ -240,7 +240,7 @@ jobs:
with:
repo: libhal/libhal-actuator
dir: demos
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4074
secrets: inherit

Expand All @@ -251,7 +251,7 @@ jobs:
with:
repo: libhal/libhal-actuator
dir: demos
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4074
extra_conan_arguments: -b missing
secrets: inherit
Expand All @@ -262,7 +262,7 @@ jobs:
uses: ./.github/workflows/app_builder2.yml
with:
repo: libhal/libhal-starter
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/lpc4078
secrets: inherit

Expand All @@ -272,7 +272,7 @@ jobs:
uses: ./.github/workflows/app_builder2.yml
with:
repo: libhal/libhal-starter
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/mcu/stm32f103c8
secrets: inherit

Expand All @@ -282,6 +282,6 @@ jobs:
uses: ./.github/workflows/app_builder2.yml
with:
repo: libhal/libhal-starter
compiler_profile: hal/tc/arm-gcc
compiler_profile: hal/tc/gcc
platform_profile: hal/bsp/mod-stm32f1-v4
secrets: inherit
Loading