Flex, Ant and TeamCity - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:05:32Z http://stackoverflow.com/feeds/question/787798 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/787798/flex-ant-and-teamcity 1 Flex, Ant and TeamCity CodeMonkey 2009-04-24T22:27:07Z 2009-05-01T09:00:15Z <p>Is anyone using TeamCity for building their Flex apps? We're using .Net for our main site code and backend flex data calls and we use flex for our application. I have a working Ant build script, but I can't get it to run with the TeamCity Ant Runner. I'm curious if anyone has gotten this working and if they have, could I potentitially see a sample of your build script?</p> <p>For some reason the build script won't pick up the FLEX_HOME environment variables for the Flex Ant Tasks.</p> http://stackoverflow.com/questions/787798/flex-ant-and-teamcity/787898#787898 0 Answer by Brett Carswell for Flex, Ant and TeamCity Brett Carswell 2009-04-25T00:06:22Z 2009-04-25T02:01:03Z <p>On a previous project I worked on we had exactly the same situation as you and it can work. I can't remember doing anything special to get this going although we may have had to manually set some environment variables in the TeamCity config. Check out the <a href="http://www.jetbrains.net/confluence/display/TCD4/6.Properties%2Band%2Benvironment%2Bvariables" rel="nofollow">TeamCity docs</a> for how to set these and how to they are <a href="http://www.jetbrains.net/confluence/display/TCD4/Using%2BProperties" rel="nofollow">used</a></p> <p>You might also try using the basic Command line runner to see if that works. When troubleshooting environment variable issues in TeamCity I have found it useful to have part of the build process run a DOS <em>set</em> command (<em>env</em> for Linux) and then look in the build logs to see what the actual environment is.</p> http://stackoverflow.com/questions/787798/flex-ant-and-teamcity/810710#810710 1 Answer by subotnik for Flex, Ant and TeamCity subotnik 2009-05-01T09:00:15Z 2009-05-01T09:00:15Z <p>I cannot see why it shouldn´t work. Just declare FLEX_HOME in the top of your Ant script, and point to the sdk on the TeamCity machine, like:</p> <pre><code>&lt;property name="FLEX_HOME" value="c:/adobe/flex/sdk/3.3"/&gt; </code></pre>