Open-CMSIS-Pack / generator-bridge

Reference examples of a generator bridge. E.g. STCubeMX_Bridge
Apache License 2.0
2 stars 6 forks source link

Add launch script for NXP MCUXpresso Config tools generator #51

Closed LukasTycNXP closed 6 months ago

LukasTycNXP commented 6 months ago

Created scripts to launch NXP MCUXpresso Config tools generator. Scripts reports not supported platform except Windows amd64. The MCUXpresso Config tools have to be v16.

jkrech commented 6 months ago

@LukasTycNXP unless there is other changes you want to make, are you happy to move this PR from draft to ready for review?

brondani commented 6 months ago

Please make sure the scripts will be added to the release archives by updating the GH Actions release job configuration: https://github.com/Open-CMSIS-Pack/generator-bridge/blob/main/.goreleaser.yml

I would suggest to add the following entry under the archives: files: node:

archives:
  - files:
      - src: scripts/MCUXpresso_Config_Tools/{{.Os}}-{{.Arch}}/launch-MCUXpressoConfigTools*
        strip_parent: true

Docs: https://goreleaser.com/customization/archive/

Edit: I took the liberty of adding the proposed goreleaser configuration change needed for the release job: https://github.com/Open-CMSIS-Pack/generator-bridge/pull/51/commits/153721f2e908493b66f1aea32abb39799c5fe23b

LukasTycNXP commented 6 months ago

Thank you