Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/package_and_upload_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ on:
modules_support_needed:
type: boolean
default: False
coroutine_support_needed:
type: boolean
default: False
ci_ref:
type: string
default: "5.x.y"
Expand Down Expand Up @@ -144,6 +147,18 @@ jobs:

- name: 📦 Build packages for all Cortex-M architectures
working-directory: target-repo
if: ${{ inputs.coroutine_support_needed == true }}
run: |
bash ../ci-repo/scripts/baremetal_package.sh \
--dir ${{ inputs.dir }} \
--version ${{ inputs.version }} \
--compiler-profile hal/tc/llvm \
--conan-version ${{ inputs.conan_version }} \
--arch-list cortex-m3,cortex-m4,cortex-m4f,cortex-m7f,cortex-m7d,cortex-m23,cortex-m33,cortex-m33f,cortex-m35pf,cortex-m55,cortex-m85

- name: 📦 Build packages for all Cortex-M architectures
working-directory: target-repo
if: ${{ inputs.coroutine_support_needed == false }}
run: |
bash ../ci-repo/scripts/baremetal_package.sh \
--dir ${{ inputs.dir }} \
Expand Down
Loading