artifacts

Bamboo Atlassian: How to share a variable between stages

风格不统一 提交于 2019-12-12 18:08:31
问题 I am relatively new to Bamboo . I have a question regarding stages implementation with shared variable. I have two stages: Stage 1: Set variable "Sample_build_number" Stage 2: Use variable "Sample_build_number" Any help with this is very much appreciated. 回答1: You can write your variables to a simple property file in Stage 1, and share the property file as an artifact. Sample_build_number=myvalue In your Stage 2 job use the Inject Bamboo variables task to read the property file. Your variable

How do I get jenkins to build every revision of a subversion repository

懵懂的女人 提交于 2019-12-12 10:45:11
问题 We are using jenkins for continuous integration using a standard poll every 10 minute scheme, and it work fine. Now I want to set up a job that is run on every revision in the repro, it will be generating something that is more or less a binary patch that corresponds to a specific commit. The only way I have figured out is by using a post-commit hook on the svnserver that queue a job on the jenkins server, but I'd rather not do that since it would demand a new hole in the firewall (and I

Can Nexus or Artifactory store simple tar.gz artifacts?

江枫思渺然 提交于 2019-12-12 07:41:52
问题 I have cloud servers located in separate data centers across the world. Each data center is separate from the others. I'm looking for an easy way to deploy artifacts to individual clusters of servers (that may be running different versions of software i.e. a dev, test, and production cluster) in each of these regions with ease and consistency. It seems to me that an artifact server is what I need because I could execute an install script on the cloud server, which pulls down the correct

Jenkins PackageCloud upload - Missing artifact - fingerprint - No such file or directory

感情迁移 提交于 2019-12-12 03:57:28
问题 Using: Jenkins: 2.7.2 PackageCloud Plugin: 1.11 Created a new trial account in packagecloud.io site, created a new private repository (URL just fyr: https://packagecloud.io/arunsangal/deb_stuff). As per the docs, I created a new Jenkins credential under packagecloud.io new domain. Then, in Jenkins packagecloud.io domain credential, I created a new user ( arunsangal ) and provided the password value (i.e. the generated API token which I got packagecloud.io site) and configured it as per the

Hudson - save artifacts only when less than 90% passes

拈花ヽ惹草 提交于 2019-12-11 19:49:35
问题 I am new at this and I was wondering how I can setup that I save the artifacts, only if less than 90% of the tests have passed. Any idea how I can do this? thanks 回答1: This is not currently possible with Hudson. What is the motivation to avoid archiving artifacts on every build? 回答2: How about a rather simple workaround. You create a post build step (or additional build step) that calls your tests from the command line. Be sure to capture all errors so Hudson don't count it as a failure. Than

Three.js CanvasRenderer depth sorting

一笑奈何 提交于 2019-12-11 11:19:42
问题 I have a few CubeGeometry objects rendered on the CanvasRenderer. I am getting some clipping issues due to depth sorting as shown on the following image. Now I have seen the responses on here that this is due to limitations in CanvasRenderer and I have tried applying a few things to get a better result but there is still the clipping issues. I have overdraw set to 1 and I have increased segments as much as I can without impacting performance too much. The image looks correct in the

Save Spectrogram as an Image in MATLAB

好久不见. 提交于 2019-12-11 02:16:52
问题 I'm analyzing some sound clips using the spectrogram() function in MATLAB . I would like to save the spectrogram as an image (jpg, png, etc). But regardless of what image format I save the figure in, the resulting image always looks different ("spotty") from what I see in the figure. Here's an example of the spectrograms: Matlab Figure vs. Saved Image All I want is to save exactly what I see in the figure as an image. I've already tried saving the figure in all the image formats possible but

TeamCity: Best Practices to deploy produced installers (artifacts)

风格不统一 提交于 2019-12-10 01:00:52
问题 We got a TeamCity server which produces nightly deployable builds. We want our beta tester to have access these nightly builds. What are the best practices to do this? TeamCity Server is not public, it is in our office, so I assume best approach would be pushing artifacts via FTP or something like that. Also I have no clue how to trigger a script when an artifact created successfully. Does TeamCity provide a way to do that? 回答1: I suggest you start looking at something like (n)Ant to handle

Media Foundation webcam video H264 encode/decode produces artifacts when played back

不打扰是莪最后的温柔 提交于 2019-12-09 11:12:27
问题 I have a solution, where I encode video (YUY2) samples from a webcam with Media Foundation's h264 encoder. Then I send it via TCP connection to another application that decodes the stream with Media Foundation's h264 decoder back to YUY2 format. After decoding, the video samples/images are presented at the screen using DirectX. The problem is that between key-frames the video image gets increasing amount of artifacts. Artifacts disappear when a key-frame is received. I dropped the TCP

How do I stop Maven 2.x from trying to retrieve non-existent pom.xml files for dependencies every build?

僤鯓⒐⒋嵵緔 提交于 2019-12-09 09:10:44
问题 In my project, there are a number of dependencies that are transitively included from other dependencies that do not have pom.xml files available in any of our corporate repositories. These are internal jar-only libraries supported by various teams which have been uploaded into repositories for convenience from non-Maven teams, however these repositories are unfortunately not mine to play with. For these dependencies, Maven insists on trying to retrieve the poms from each of my repository