build-management

Automating builds from subversion tags

我只是一个虾纸丫 提交于 2020-01-13 07:56:09
问题 I'm trying to automate the build process for engineering group. As part of that automation, I'm trying to get to a point where the act of applying a specific tag that adheres to a pattern will kick off an automated process that will do the following: Check out source code Create a build script from a template Build the project I'm pretty certain I could do this with a post-hook in subversion, but I'm trying to figure out a way to do this with something other than a subversion hook. Would it

Need primer for a Msbuild newbie [closed]

心已入冬 提交于 2020-01-02 05:15:24
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We maintain a medium sized windows application developed in vb/c# .net in work. Still now the build and deploy process for this app is

Need primer for a Msbuild newbie [closed]

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 10:23:03
We maintain a medium sized windows application developed in vb/c# .net in work. Still now the build and deploy process for this app is manual. I am determined to make this process automated using MSBuild on which i have no knowledge still now. Our app has a simple build structure, set of projects already grouped into four solutions(.sln) and just need to build the four slns in an order. And then publish a project(which is part of the last sln to be built) to a directory. That is it. A simple process which is already consuming 30 mins of manual build time and i'm pretty sure that this can be

Automating builds from subversion tags

风流意气都作罢 提交于 2019-12-05 00:07:22
I'm trying to automate the build process for engineering group. As part of that automation, I'm trying to get to a point where the act of applying a specific tag that adheres to a pattern will kick off an automated process that will do the following: Check out source code Create a build script from a template Build the project I'm pretty certain I could do this with a post-hook in subversion, but I'm trying to figure out a way to do this with something other than a subversion hook. Would it make sense to monitor the tags directory in the subversion repository to kick off my workflow? Are there

GNU make with many target directories

南楼画角 提交于 2019-12-04 13:47:53
问题 I have to integrate the generation of many HTML files in an existing Makefile . The problem is that the HTML files need to reside in many different directories. My idea is to write an implicit rule that converts the source file (*.st) to the corresponding html file %.html: %.st $(HPC) -o $@ $< and a rule that depends on all html files all: $(html) If the HTML file is not in the builddir make doesn't find the implicit rule: *** No rule to make target . If I change the implicit rule like so $

How to use master pom file to checkout all modules of a web application and build all modules

会有一股神秘感。 提交于 2019-11-30 22:18:11
I have a web application that relies on several modules. So to build it, I have a master pom.xml file. What I want this pom file to do is to checkout out all the modules. below is my pom file. <executions> <execution> <id>check-out-project1</id> <phase>generate-sources</phase> <goals> <goal>checkout</goal> </goals> <configuration> <checkoutDirectory>${project.build.directory}/module1</checkoutDirectory> <connectionUrl>scm:svn:svn://svnserver/svn/module1/trunk</connectionUrl> <!--<developerConnection>scm:svn:svn://svnserver/svn/module1/trunk</developerConnection>!--> <username>username<

How to use master pom file to checkout all modules of a web application and build all modules

我的未来我决定 提交于 2019-11-30 05:20:17
问题 I have a web application that relies on several modules. So to build it, I have a master pom.xml file. What I want this pom file to do is to checkout out all the modules. below is my pom file. <executions> <execution> <id>check-out-project1</id> <phase>generate-sources</phase> <goals> <goal>checkout</goal> </goals> <configuration> <checkoutDirectory>${project.build.directory}/module1</checkoutDirectory> <connectionUrl>scm:svn:svn://svnserver/svn/module1/trunk</connectionUrl> <!--

Differences between Ant and Maven [closed]

五迷三道 提交于 2019-11-29 18:32:56
Could someone tell me the differences between Ant and Maven? I have never used either. I understand that they are used to automate the building of Java projects, but I do not know where to start from. Tim O'Brien In Maven: The Definitive Guide , I wrote about the differences between Maven and Ant in the introduction the section title is "The Differences Between Ant and Maven" . Here's an answer that is a combination of the info in that introduction with some additional notes. A Simple Comparison I'm only showing you this to illustrate the idea that, at the most basic level, Maven has built-in

Differences between Ant and Maven [closed]

左心房为你撑大大i 提交于 2019-11-28 13:08:05
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Could someone tell me the differences between Ant and Maven? I have never used either. I understand that they are used to automate the building of Java projects, but I do not know where to start from. 回答1: In Maven: The Definitive Guide, I wrote about the differences between Maven