The build-script tag has no wiki summary.
0
votes
1answer
20 views
Phing copy contents of folder
I'm trying to move the contents of a folder to another destination in Phing. I can't directly download the contents from SVN, because they're in a zip. After the file is unzipped, I want to move the ...
1
vote
1answer
41 views
How do I configure the SVN HTTP proxy from the command line?
I script the set up of my build environment. (So the build process can bootstrap itself if it finds itself running on a clean image).
As part of this process, certain dependencies are retrieved from ...
0
votes
2answers
71 views
How to define repositories for all subprojects in Gradle
I am writing Gradle scripts to build a lot of projects. They are using the same repositories so I would like to define repositories for all of my sub-projects instead of defining in each of them.
So ...
1
vote
1answer
125 views
Excluding references from Typescript compilation?
I have a bit of a strange (but in my view sensible) scenario.
I have a web site, mobile application and maybe going forward a web server all written in Javascript. I have a huge chunk of ...
2
votes
1answer
158 views
Typescript command line compilation without NodeJS
I was looking over Typescript and was a bit confused about how you could build your js files from the ts files via the command line.
It implies in the documentation that you can do it easily through ...
2
votes
1answer
108 views
How to configure HTML5Boilerplate to output quotes correctly when using PHP?
OK, so I'm using HTML5 Boilerplate to minify css, js and html which is placed within my PHP files.
Using the build script I can successfully create a publish folder and the css and js and even the ...
1
vote
0answers
129 views
Sublime Text 2 Build System custom rake task
I am using rake and the git_repositoy gem to deploy my rails app to github. The rake task i use looks like the following:
task :test_deploy, :message do | t, args|
@git = GitRepository.new
...
2
votes
1answer
116 views
How to build mixed Scala\Java Eclipse workspace automatically?
I have an Eclipse (3.7.2 + Scala 2.10 plugin) workspace. It contains more than 10 Scala and Java projects. I want to organize simple CI build. Just full recompilation (without testing, distribution, ...
1
vote
1answer
308 views
XCode app store build - new target or configuration?
I have an app with 3 targets. Or schemes. Each target have two configs, dubug and release. I am building it in command line using build script.
For ad hoc release I use the configuration 'release'. ...
0
votes
2answers
95 views
Automating Self Sign Certificate IIS7 (possibly with appcmd)
I currently have a rake script which compiles, packages and deploys an ASP MVC web project. Currently I am tearing down and setting up IIS every time the build script is run, however I am now looking ...
0
votes
0answers
196 views
Combine CSS Files - HTML5 Boilerplate Ant Build Script
I am using the latest version of H5BP along with their Ant Build Script and am having a hard time getting the CSS files to combine/concatenate when I run the build script. I am looking to combine the ...
2
votes
1answer
219 views
MSBuild - Copy All Bin Output - Debug|Release
I have the following MSBuild targets file (below).
How would I add an additional step after Default to copy all the \bin\Debug or \bin\Release from one of the projects to a folder called binaries ...
1
vote
1answer
468 views
How to use ant replaceregex task to replace a line with file path in windows?
In my build file i have an ant target in which i have following snippet ,
<replaceregexp replace="custom.dir=${basedir}/tasks/custom" byline="true" ...
1
vote
1answer
82 views
replace .php file extensions with .html extension using unix
I am creating a build script to sweep through .html files after they are generated, I cannot seem to find out how to get this to work. Here is a snippet:
for PAGE in ${PAGES[@]}
do
echo "\t\t\t- ...
0
votes
2answers
123 views
ant android , skip install if no device present
when using ant to install android apps, it will hang if there is no android device connected to the machine. It will just wait for the user to connect one, which interrupts the autonomous nature of ...
1
vote
0answers
455 views
HTML5 Ant Build Script
I'm having trouble getting multiple pages working with the HTML Ant Build Script. This was working at one time where I would get multiple contatenated js files based on the different pages, but that ...
0
votes
1answer
132 views
gradle Execution order
i'm new to gradle. If i'm not using the either doFirst() or doLast(). In which order the lines in a plugin(say) are executed. i can observe that they are not executed sequentially?
Can somebody ...
0
votes
1answer
107 views
Passing Variables into Python file via CruiseControl
I have a CruiseControl project that executes a file build.py, whether it is nightly or CI. I would like to throw up some kind of flag in my build script that can determine which function to call, so I ...
1
vote
0answers
125 views
Html5boilerplate build script not updating SRC attribute
This question is similar to How to configure html5boilerplate build script to get script src attributes replaced to the compressed script? but I'm not using a php prefix and it happens both to CSS and ...
1
vote
2answers
609 views
Internet Explorer, Closure Compiler and Trailing Commas
I'm using html5boilerplate build script and when minifying the scripts (which uses Google Closure Compiler)
I'm getting this error
-js.all.minify:
[echo] Minifying scripts
[copy] Copying ...
2
votes
1answer
329 views
H5BP Build Script Issue
Every time I try to use HTML5 Build Script I get this errors:
-js.main.concat:
[echo] Concatenating Main JS scripts based on index.html...
[concat] ...
2
votes
1answer
139 views
Cruise Control Executing Python Script
I have a project that uses a single .py file to build and zip everything. How can this be called successfully in Cruise Control? I have tried the following for a default Ant build script:
<project ...
2
votes
2answers
293 views
powershell weirdly encodes ampersands when I try to set the value to an xml attribute
In my build script, I have a helper powershell function as below:
function set-connectionstring {
param($path, $name, $value)
$settings = [xml](get-content $path)
$setting = ...
1
vote
1answer
129 views
Build script for Visual Studio and Qt projects
I have an C++ application, which consists of serveral VS2010 projects and two Qt Creator projects (for the GUI).
I would like to have a build script, which builds all the projects at once. So what ...
0
votes
0answers
53 views
Setting the .NET Framework on a new App Pool
I'm creating a new AppPool using the MSBuild Community Tasks AppPoolCreate task.
I want to set the .NET Framework Version on the app pool but haven't been able to find out how to do this using the ...
1
vote
1answer
226 views
How to deal with Gradle and multi project configuration?
I have several projects [A, B, C], A depends on B and C.
I want to move my projects to a multi project build configuration. Today my projects live on SVN, completely isolated.
I was wondering if the ...
0
votes
1answer
115 views
Did OSX Java changes remove some ant functionally?
We have a cross platform application that is written in Java and built with an ant script. This code has not been built on the Mac since January of 2010. Recently I checked out the January 2010 ...
2
votes
2answers
279 views
HTML5 Boilerplate build script, VCS-based deployment and duplicate content
I'm using the HTML5 Boilerplate build script on a new project that I've just deployed to a staging environment. The script works like a charm; it's well documented, so it was easy to configure for use ...
0
votes
1answer
38 views
Recursively search for, and build, arbitrary VS solutions using a batch script w/ command line args
So, I want to be able to build an arbitrary number of VS solutions using a batch script. I would want the script to search for the given project names, and pass their filepaths to the VS CLI.The ...
0
votes
4answers
976 views
Could not find the main class error with Ant
It's my first time using Ant and I'm getting a java.lang.NoClassDefFoundError Exception when it tries to run. Here is my Ant build script,
<project name="LearnKirtan" basedir="." ...
0
votes
1answer
84 views
Ant build trace call to class
My build script is failing because it is building class A before the dependency is built.
Is there a way to trace when exactly class A is being loaded during compilation? I know the task which fails ...
0
votes
1answer
81 views
Does Phantom build system work under Mono?
I'm looking at cross-platform build systems for .Net projects. Phantom looks interesting, however I'm wondering if it will work OK on Linux with Mono. It is built on top of Boo. It seems like Boo ...
1
vote
1answer
348 views
GCC ignores second Wno-error option in buildscript, what is wrong?
Edit: Used gcc-version is 4.6.
I'm trying to build a toolchain for which I have a buildscript to build the required libraries.
I'm trying to build binutils and since warnings are seen as errors, and ...
0
votes
1answer
98 views
_PublishedWebsites dont include webfonts?
I am a bit baffled, I have an MVC3 project in Visual Studio 2010, and as part of our build script which outputs the compilation to an "output" directory.
This all works fine, however we are now ...
2
votes
1answer
696 views
Real Hierarchical Builds with SCons?
So I've read the questions on here about hierarchical builds like: Creating a Hierarchical Build with SCons
I want to do real hierarchical construction of two standalone repos that both use scons ...
1
vote
1answer
225 views
HTML5Boilerplate build script with assests sub-folders
My site layout (asset folders only):
/assets
/assets/js
/asstes/js/frameworks - conatins js files like jquery.js
/assets/js/plugins - contains my jquery plugins
index.html extract:
...
1
vote
2answers
220 views
Build/Package Android application with rake?
Is it possible to build an android application with rake? The only other question on this subject I saw was a while back and someone advised using Gradle.
So is there any way to do this on the ...
2
votes
1answer
438 views
Rake (Ruby) equivalent internal DSL in C#
For insight into the below, read: http://martinfowler.com/articles/rake.html
I've been using Rake (with Albacore) recently, and like it alot. Mostly the strength of having the Ruby language right at ...
3
votes
3answers
175 views
How do I use other build systems with rubygems?
My C code is getting harder to manage due to the inflexibility of mkmf. For this reason, I'd like to use another build system.
What does rubygems need in order to build a C extension? How can I ...
2
votes
1answer
806 views
OpenSSL build script fails when run as a 'run script' phase within Xcode (succeeds outside of Xcode)
I'm attempting to run a script to build OpenSSL for iOS (armv6, armv7 and i386) as a 'run script' phase in Xcode.
The script builds successfully when run from the command line as a stand alone ...
2
votes
1answer
216 views
JIRA - Update last build number from SVN
I have a powershell build script which checks out code and increments a build number in SVN (nightly) in our Version.h file.
What I need is some way to set that build number in JIRA (or have JIRA ...
1
vote
1answer
192 views
MSBuild property and variable overloading
Let's say I launch a build script, definition named SampleScript , specifying the parameter /p:MyPrefix=Custom. There is the following code in the script:
<PropertyGroup ...
0
votes
1answer
78 views
Change a string and undo this change make the file empty
In my script to compile my program in XCode, I need to change the config file from
<string>${NAME}</string> to <string>My New Name</string>
And after finish, redo this ...
0
votes
1answer
137 views
H5BP Build Script Image Optimization
When i run the build script everything works fine but because of the amount of images it takes about 5 minutes to build. Isn't the build script supposed to check if the images are modified since the ...
0
votes
3answers
157 views
Java encodings for Japanese
Our software has a script that creates different language JAR files, for Japanese we use the encoding SJIS in a call to native2asci. This worked last time a Japanese build was attempted but now seems ...
3
votes
1answer
176 views
Can you use an ANT build file as a Phing build file?
I just started playing around with Phing build scripts (built with PHP). From what I have read is that Phing is based on Apache Ant (built with Java).
Both use XML build files and have similar ...
0
votes
1answer
47 views
how to add debug flags on compilation script execution:
I have a simple ./compile.make script that produces a bunch of object .o files. The contents are like this (first 5 lines printed):
compile.make:
gfortran -c -O3 active.f
gfortran -c -O3 alchemy.f
...
2
votes
2answers
136 views
Implimenting single script build - non-portable dependencies
It seems that a build system best-practice is to have a single script that can build all source and package the releases. See Joel Test #2
How do you account for non-portable dependencies? For ...
3
votes
3answers
241 views
Nant build script IDE [closed]
I work on project where is huge Nant build script.
Could you advise free Nant build script IDE?
2
votes
2answers
219 views
How to create script to deploy asp.net application direct from clearcase?
I am trying to write a script to deploy asp.net application from Clear Case. I am using Clear Case Remote Client.
How will i start? what is the easiest way?

