Skip to content

Commit

Permalink
[buildmgr] Update tools versions and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
grasci-arm authored Nov 27, 2023
1 parent cd4648c commit afc265d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tools/buildmgr/cbuildgen/installer/create_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ curl --retry 3 -L ${cbridge_base}_windows_arm64.zip -o temp.zip && unzip -p te
curl --retry 3 -L ${cbridge_base}_darwin_arm64.tar.gz -o - | tar xzfO - --wildcards '*cbridge' > ${distdir}/bin/cbridge.mac-arm64

# Get csolution
csolution_version="2.1.0"
csolution_version="2.2.0"
csolution_base=https://github.com/Open-CMSIS-Pack/devtools/releases/download/tools%2Fprojmgr%2F${csolution_version}/projmgr.zip
curl --retry 3 -L ${csolution_base} -o temp.zip && unzip -q -d temp temp.zip
cp 'temp/bin/linux-amd64/csolution' ${distdir}/bin/csolution.lin-amd64
Expand All @@ -94,7 +94,7 @@ cp -r temp/etc/* ${distdir}/etc
rm temp.zip && rm -rf temp

# Get cbuild
cbuild_version="2.1.0"
cbuild_version="2.2.0"
cbuild_base=https://github.com/Open-CMSIS-Pack/cbuild/releases/download/v${cbuild_version}/cbuild_${cbuild_version}
curl --retry 3 -L ${cbuild_base}_linux_amd64.tar.gz -o - | tar xzfO - --wildcards '*cbuild' > ${distdir}/bin/cbuild.lin-amd64
curl --retry 3 -L ${cbuild_base}_windows_amd64.zip -o temp.zip && unzip -p temp.zip '*/cbuild.exe' > ${distdir}/bin/cbuild.exe-amd64 && rm temp.zip
Expand Down
4 changes: 2 additions & 2 deletions tools/buildmgr/cbuildgen/installer/make_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ cbridge_base=https://github.com/Open-CMSIS-Pack/generator-bridge/releases/downlo
curl --retry 3 -L ${cbridge_base}_linux_amd64.tar.gz -o - | tar xzfO - --wildcards '*cpackget' > ${input}/bin/cbridge.lin-amd64

# Get csolution
csolution_version="2.1.0"
csolution_version="2.2.0"
csolution_base=https://github.com/Open-CMSIS-Pack/devtools/releases/download/tools%2Fprojmgr%2F${csolution_version}/projmgr.zip
curl --retry 3 -L ${csolution_base} -o temp.zip && unzip -q -d temp temp.zip
cp 'temp/bin/linux-amd64/csolution' ${input}/bin/csolution.lin-amd64
cp -r temp/etc/* etc/${PACKAGE_NAME}
cp -r temp/etc/* usr/lib/${PACKAGE_NAME} && rm temp.zip && rm -rf temp

# Get cbuild
cbuild_version="2.1.0"
cbuild_version="2.2.0"
cbuild_base=https://github.com/Open-CMSIS-Pack/cbuild/releases/download/v${cbuild_version}/cbuild_${cbuild_version}
curl --retry 3 -L ${cbuild_base}_linux_amd64.tar.gz -o - | tar xzfO - --wildcards '*cbuild' > ${input}/bin/cbuild.lin-amd64

Expand Down
12 changes: 12 additions & 0 deletions tools/buildmgr/docs/doxygen/Build/src/General.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ Software layers and Virtual I/O simplify these use cases:
<th>Description</th>
</tr>
<tr>
<td>2.2.0</td>
<td>Release notes:
- updated cbuild utility v2.2.0
- updated cpackget utility v2.0.0
- updated csolution utility v2.2.0
- updated alpha clang support to v17.0.1
- added cbridge utility v0.9.1
- added 'warnings' option 'all'
- added '*.src' file extension as linker script source for pre-processing
- fixed GPDSC without components
- fixed IAR single precision FPU error
</td>
<td>2.1.0</td>
<td>Release notes:
- updated cbuild utility v2.1.0
Expand Down

0 comments on commit afc265d

Please sign in to comment.