Skip to content

Commit

Permalink
[buildmgr] Update cpackget and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
grasci-arm authored Apr 19, 2022
1 parent 455bec0 commit 8fa4d6d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tools/buildmgr/cbuildgen/installer/create_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cp -R ../config/. ${distdir}/etc
cp ../../docs/LICENSE.txt ${distdir}

# Get cpackget
cpackget_version="0.3.2"
cpackget_version="0.4.0"
cpackget_base=https://github.com/Open-CMSIS-Pack/cpackget/releases/download/v${cpackget_version}/cpackget_${cpackget_version}
curl --retry 3 -L ${cpackget_base}_windows_amd64.zip -o temp.zip && unzip -p temp.zip '*/cpackget.exe' > ${distdir}/bin/cpackget.exe && rm temp.zip
curl --retry 3 -L ${cpackget_base}_linux_amd64.tar.gz -o - | tar xzfO - --wildcards '*cpackget' > ${distdir}/bin/cpackget.lin
Expand Down
2 changes: 1 addition & 1 deletion tools/buildmgr/cbuildgen/installer/make_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ mkdir -p etc/${PACKAGE_NAME}
mkdir -p etc/profile.d

# Get cpackget
cpackget_version="0.3.2"
cpackget_version="0.4.0"
cpackget_base=https://github.com/Open-CMSIS-Pack/cpackget/releases/download/v${cpackget_version}/cpackget_${cpackget_version}
curl --retry 3 -L ${cpackget_base}_linux_amd64.tar.gz -o - | tar xzfO - --wildcards '*cpackget' > ${input}/bin/cpackget.lin

Expand Down
4 changes: 3 additions & 1 deletion tools/buildmgr/docs/doxygen/Build/src/General.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ Software layers and Virtual I/O simplify these use cases:
<tr>
<td>0.11.0</td>
<td>Release for review of initial development:
- new cbuild utility v0.9.0 replacing cbuild.sh
- new cbuild utility v0.9.0 replacing cbuild.sh.
- updated cpackget utility v0.4.0.
- added access sequences handling.
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion tools/buildmgr/test/integrationtests/src/CPackGetTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ TEST_F(CPackGetTests, PackAddPackInstallationTest) {
RunScript("postpackinstall.sh", testout_folder);

// Try to re-install already installed pack
param = { "", "Testpack.cpinstall", "", "", false };
// Since cpackget 0.4.0 re-installing an already installed pack does not raise error
RunPackAdd(param);
}

Expand Down

0 comments on commit 8fa4d6d

Please sign in to comment.