Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI/CD conceptualisation #15554

Draft
wants to merge 36 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6b35d49
customisation pom
RaveenaRamany Dec 15, 2023
2d06294
customize pom.xml
RaveenaRamany Dec 16, 2023
a4d93f2
fix typo in url
RaveenaRamany Dec 16, 2023
c9dc3d4
output server.xml content
RaveenaRamany Dec 16, 2023
3cc30dd
test server.xml
RaveenaRamany Dec 16, 2023
c3be31d
remove ci/cd file
RaveenaRamany Dec 16, 2023
efa16ac
temporary s3 storage
RaveenaRamany Dec 16, 2023
c6e85f6
test s3 upload
RaveenaRamany Dec 16, 2023
7eb5096
testing output of main.basedir
RaveenaRamany Dec 16, 2023
d5db258
test directory-of configuration
RaveenaRamany Dec 17, 2023
9e37cc8
change mainbasedir
RaveenaRamany Dec 17, 2023
f5d03f9
change directory-of property back to main.basedir
RaveenaRamany Dec 17, 2023
91be44d
change distribution URL
RaveenaRamany Dec 17, 2023
75dab0d
change Distribution Repo
RaveenaRamany Dec 17, 2023
4f9c03b
test echo variabl
RaveenaRamany Dec 17, 2023
8bc93be
delete local profil
RaveenaRamany Dec 17, 2023
f82fb97
update env
RaveenaRamany Dec 17, 2023
6c30f35
output main.basedir
RaveenaRamany Dec 17, 2023
ac738c5
remove pom copy
RaveenaRamany Dec 17, 2023
3884df2
Change S3 URL
RaveenaRamany Dec 18, 2023
23bc310
change url
RaveenaRamany Dec 18, 2023
c91be1c
switch shell to powershell
RaveenaRamany Dec 19, 2023
afec181
echo vars
RaveenaRamany Dec 19, 2023
2ba6c31
update todos
RaveenaRamany Dec 19, 2023
c381870
Use cpack from PATH provided by chocolatey install
RaveenaRamany Dec 19, 2023
d50e836
Use cpack from PATH provided by chocolatey install
RaveenaRamany Dec 19, 2023
beab244
Dynamically set path for cpack property
RaveenaRamany Dec 19, 2023
a68380f
Fix missing slashes
RaveenaRamany Dec 19, 2023
8acf978
Remove duplicate property declaration and switch from cpack.exe to "c…
RaveenaRamany Dec 20, 2023
04d8668
Add fileextension to property
RaveenaRamany Dec 20, 2023
648ee61
output variables for troubleshooting
RaveenaRamany Dec 20, 2023
23524fa
test full choco path
RaveenaRamany Dec 20, 2023
28b43b1
test absolute path of choco.exe
RaveenaRamany Dec 20, 2023
c0139ad
test choco path
RaveenaRamany Dec 20, 2023
134826d
test path choco path
RaveenaRamany Dec 20, 2023
00973de
Use choco.exe from windows PATH
RaveenaRamany Dec 20, 2023
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
8 changes: 6 additions & 2 deletions cli/windows/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
<equals arg1="${configuration}" arg2="release" />
</condition>

<property name="cpack.bin" value="${env.ChocolateyInstall}/bin/cpack"/>
<!--Todo: Static path for cpack not needed as choco pack is the successor of cpack.exe and choco.exe is automatically added to PATH when chocolatey is installed-->
<!--<property name="cpack.bin" value="${env.ChocolateyInstall}/bin/cpack"/>-->

<property name="chocolatey.source" value="${setup}/chocolatey/duck"/>
<property name="chocolatey.target" value="${build.deploy}"/>
Expand Down Expand Up @@ -102,6 +103,9 @@
<replacefilter token="${CHECKSUM}" value="${archive.sha256}"/>
<replacefilter token="${COPYRIGHT}" value="${copyright}"/>
</replace>
<exec executable="${cpack.bin}" dir="${chocolatey.target}" failonerror="true"/>
<!--Todo: Changed ${cpack.bin} to choco as cpack.exe is now integrated in choco.exe and choco.exe is automatically added to PATH when chocolatey is installed-->
<exec executable="choco" dir="${chocolatey.target}" failonerror="true">
<arg value="pack"/>
</exec>
</target>
</project>
Loading