mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

The upgrade is one of the steps of the endgame plan, or it can be done manually when needed. Change-Id: I9ec83b65015474a08099e294bd168105a5bdcbe7
15 lines
830 B
XML
15 lines
830 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project default="BuildDebugServers">
|
|
<!-- Wrap running yarn in an ant task so that we don't have to specify absolute path to yarn in external tool builder. -->
|
|
<target name="BuildDebugServers" description="Build the Node Debug Servers with yarn">
|
|
<!-- Don't upgrade on each build - TODO determine better way to keep this bundle up to date, in the meantime
|
|
the upgrading is a manual process when and if needed, and is
|
|
part of https://github.com/eclipse-cdt/cdt-infra/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3Aendgame
|
|
-->
|
|
<!-- <exec executable="yarn" dir="./debug-servers" failifexecutionfails="true">
|
|
<arg value="upgrade"/>
|
|
<arg value="cdt-gdb-adapter"/>
|
|
</exec> -->
|
|
<exec executable="yarn" dir="./debug-servers" failifexecutionfails="true" />
|
|
</target>
|
|
</project>
|