Questions tagged [artifacts]

mostly used in terms of computer graphics artifacts are unwanted bugs in rendered output

in terms of computer graphics artifacts are unwanted bugs in rendering output

  • usually caused by rounding errors of float values
  • or by overflows/underflows of integer values

Most usual are:

  • invalid pixel color for some pixels
  • choppyness (pixelation) of image (like very low quality JPG)
  • holes in geometry (related to Z-Buffer accuracy)

Artifacts are not bound to graphics only

  • for example high order polynomial computations can also have artifacts inside
  • causing invalid results while using them if precision is too low
506 questions
18
votes
2 answers

Gradle's publishToMavenLocal task is not executed correctly

I'm trying to create a gradle based multi-module project. There is also an project that contains different gradle scripts that enables pluggable build configurations. One of those scripts is for publishing artifacts to maven repository. This is the…
Rade Milovic
  • 965
  • 4
  • 13
  • 29
17
votes
3 answers

Remove directory structure in Teamcity's artifacts

I use Teamcity to build different packages and want to save those Packages as Artifacts. My Artifact Path in TeamCity is the following: %system.teamcity.build.workingDir%\**\Release**/*.wsp => Solution Now TeamCity collects all WSP-Files in any…
Ole Albers
  • 8,715
  • 10
  • 73
  • 166
17
votes
0 answers

Ray and ellipsoid intersection accuracy improvement

I need to enhance precision for function in one of mine Atmospheric scattering GLSL fragment shader which computes the intersection between single ray and axis aligned ellipsoid. This is the core function for mine atmospheric scattering shader. The…
Spektre
  • 49,595
  • 11
  • 110
  • 380
16
votes
1 answer

Downloading artifacts from Jenkins using wget or curl

I am trying to download an artifact from a Jenkins project using a DOS batch script. The reason that this is more than trivial is that my artifact is a ZIP file which includes the Jenkins build number in its name, hence I don't know the exact file…
Erik
  • 812
  • 1
  • 7
  • 15
16
votes
2 answers

Maven: How to create assembly with snapshot artifacts without timestamps file name?

I've a repository containing snapshot artifacts with timestamps. I want to create an assembly, that contains the dependencies. This works fine. But the artifact names contains the timestamp. So i wonder how to remove the timestamp from filename for…
marabol
  • 1,247
  • 2
  • 15
  • 22
15
votes
6 answers

Can Jenkins store artifacts outside the job directory?

I currently have Jenkins set up with a number of jobs, but it's proving difficult to back up because the artifacts are stored within the job directory. I'd like to back up the job configurations and artifacts separately. I'm sure I remember reading…
the_mandrill
  • 29,792
  • 6
  • 64
  • 93
15
votes
2 answers

What's the correct wildcard syntax to copy TeamCity artifacts to the root of a destination path?

I'm having a small drama with the wildcard syntax in my TeamCity artifact configuration. I want to grab every file matching the pattern myproject.*.dll from any folder and place each DLL in the root of the artifacts path. Here's what I've got at…
Troy Hunt
  • 20,345
  • 13
  • 96
  • 151
14
votes
3 answers

How to have Bamboo artifacts collect a whole folders?

I have one simple plan with one simple job. Tasks: Source code checkout MSBuild Run tests Generate test report In four steps, my utility generates a test report with screenshots. The report contain absolute links to images. (for example:…
Vladimir Avdeev
  • 306
  • 1
  • 2
  • 5
14
votes
4 answers

TeamCity: Best Practices to deploy produced installers (artifacts)

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…
dr. evil
  • 26,944
  • 33
  • 131
  • 201
12
votes
1 answer

Black stripes on third screen

I have three screens, connected to two nVidia 560Ti cards, and when I move my WPF application to the third screen, connected to the second card, click on a item in a treeview, I get these black stripes across the app. The black lines disappear if I…
AkselK
  • 2,563
  • 21
  • 39
12
votes
2 answers

Share files between azure pipeline Jobs

In the documentation of the Azure pipelines, I read that: Each agent can run only one job at a time. To run multiple jobs in parallel you must configure multiple agents. When you run a pipeline on a self-hosted agent, by default, none of the…
AnjK
  • 2,887
  • 7
  • 37
  • 64
12
votes
4 answers

How to archive the content of a folder recursively as artifacts on Jenkins?

My jenkins job creates a temporary subfolder, say "mydir", within the workspace that I then want to archive using the postbuild step "Archive artifacts". I'm using the following command: mydir/**/* It works well but the archive will always contains…
tbop
  • 394
  • 1
  • 3
  • 13
12
votes
2 answers

How can I access artifacts created by Jenkins in the lastSuccessfulBuild through a URL?

I'm building an Android application using Jenkins pipeline. When a build finishes successfully, it creates an .apk file. I want members of the QA team to be able to download this file and test the application before uploading it Google store and so…
Itai Ganot
  • 5,873
  • 18
  • 56
  • 99
10
votes
4 answers

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

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…
Chad
  • 341
  • 6
  • 18
9
votes
2 answers

Circle Ci 2.0 artifacts url

Circle Ci 2.0 artifacts can be accessed with the following url https://{BUILD_NUMBER}-{UNKNOWN_NUMBER}-gh.circle-artifacts.com/0 What does the number after CI build number represent.
smndiaye
  • 438
  • 7
  • 13
1
2
3
33 34