|
Right now, TeamCity is creating 2 sets of artifacts each time I do a successful pre-tested commit, one when it builds the solution with my local changes against which to run the tests, and a second time when it gets triggered by the VCS repository change...
Started by Sam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Go to the Administration page and copy the existing build are checked into VCS" Under "General Settings" on the copy remove everything from Artifact Paths.
Configured for saving Artifacts.
|
|
Assume that I set up an automatic nightly build . What artifacts of the build should I save?
For example:
Input source code output binaries Also, how long should I save them, and where?
Do your answers change if I do Continuous Integration?
Started by Jay Bazuzi on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Ask yourself this question: "if something destroys entirely or burn a cd/dvd with the build result and ....
Here are some artifacts/information that I'm used to keep at each build:
The tag name be stored with the other build artifacts.
|
|
I am trying to draw some bar graphs with a data set that contains overlapping priorities.
E.g. three bars of different colors may be drawn at one point, but the one with the highest priority will be shown. This works most of the time, but I am getting...
Started by yx on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When I've seen things like this before it was because I was graphing multiple data... .
I'm not quite sure what you mean, but you probably should remove the priorities you don't want to see from the data model altogether, then they won't be painted at all .
|
Ask your Facebook Friends
|
We are using SourceForge Enterprise Edition 4.4 in one of our project.
My question is, in CollabNet SFEE (SourceForge Enterprise Edition 4.4), how will we get attachments associated with an Artifacts Using SFEE SOAP API?
We have made our own .net 2.0 ...
Started by Ramesh Soni on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Documents....
Then it will associate to that artifact you can also do the http://sfeeserver/sf/go/ .
If you commit with a message you can add "[artf1000]" (where artf1000 is your artifact number) to the beginning or end of your commit message.
|
|
Hi,
I some text with HTML artifacts where the < and > of tags got dropped, so now I need something that will match a small p followed by a capital letter, like
pThe next day they....
And I also need something that will catch the trailing /p which...
Started by gouwsmeister on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You use backreferences,
import re smallBig = re.compile(r'[a-z]([A-Z])....
I got is.
Try this:
re.sub(r"(/?p)(?=[A-Z]|$)", r"<\1>", str)
You might want to extend the boundary assertion (here (?=[A-Z]|$) ) with additional characters like whitespace .
|
|
Is there any way to force Maven to use remote artifacts and not those installed on your machine? since I worry about runtime errors and not compilation errors build server is not valid option.
P.S. I know I could delete or rename the .m2 folder, but I...
Started by 01 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Having a local....
I can't see why this would be supported as execution would be awful, and any dropped connection would result in classloader issues .
Having no local repository would mean your classpath consisting almost entirely of URLs on remote servers .
|
|
I am running both maven inside the m2eclipse plugin, windows command line and my cygwin command line.
cygwin's bash shell dumps artifacts into the cygwin /home/me/.m2 directory
but m2eclipse & windows shell (on vista) uses /Users/me/Documents/.m2
Is it...
Started by ashitaka on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The most typical is to specify this in your settings.xml file:
http://maven.apache.org/settings.html <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http... .
Sure, several ways.
|
|
I have an NSView subclass that can be dragged around in its superview. I move the views by calling NSView's setFrameOrigin and setFrameRotation methods in my mouseDragged event handler. The views are both moved and rotated with each call.
I have multiple...
Started by Ryan Ballantyne on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The artifacts are, effectively, caused by rounding error.
That is obscured by the view being dragged.
|
|
This is a continuation question from a previous question I have asked
I now have a /externals directory in the root of my project tree. Inside this I have a reference to another project. I'm able to script the build of all my externals in the main project...
Started by Scott Muc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd say build them once and check the build artifacts in /public/ext/some_dependency/ref (obviously.
|
|
In the course of your software development lifecycle, what essential design artifacts do you produce? What makes them essential to your practice?
The project I'm currently on has been in production for 8+ years. This web application has been actively ...
Started by happyappa on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If the design artifacts don't.
And agile projects more recently, there's a number of design artifacts I like to create although an application to a support team without having to hand over their phone numbers.
|