continuous-delivery

Command-line Package Service Fabric Application

纵然是瞬间 提交于 2021-02-06 10:55:36
问题 Our continuous delivery set-up, until recently, was delivering Service Fabric packages using the following command: msbuild SFApp.sfproj /t:Package This was necessary because the target Package is unavailable at the solution level. I.e. The command msbuild SFSolution.sln /t:Package Fails, as the target does not exist. As our dependency mesh grows, it gets to a point in which most interfaces projects will not build without a solution file (to work around the "OutputPath does not exist" red

CircleCI: Cannot find a definition for executor named ubuntu?

三世轮回 提交于 2021-01-29 10:20:12
问题 I am trying to extend the orb that is already in use. We have used Docker before but now want to use a machine executor and maybe a windows executor in the future. I go through the documentation, but it is not clear if it is possible to have executors of different types and call them on the same jobs. Is it possible to have executors of different types in the same orb in CircleCI? I tried creating the executor ubuntu.yml : description: > The executor to run testcontainers without extra setup

How to set LD_LIBRARY_PATH on Jenkins

ぃ、小莉子 提交于 2021-01-27 12:48:55
问题 I am having java.lang.UnsatisfiedLinkError problem while running a job from Jenkins. <error message="no JSTAF in java.library.path" type="java.lang.UnsatisfiedLinkError">java.lang.UnsatisfiedLinkError: no JSTAF in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1681) at java.lang.Runtime.loadLibrary0(Runtime.java:840) at java.lang.System.loadLibrary(System.java:1047) Basically I need to set LD_LIBRARY_PATH and when this is set, it works fine from command line execution

Alternative to sonar.analysis.mode parameter

雨燕双飞 提交于 2021-01-03 06:47:45
问题 I'm using Sonarqube 7.9 and Gitlab with a maven docker image that calls my Sonarqube using mvn --batch-mode verify sonar:sonar -DskipTests=true -Drevision=$REVISION_UNSTABLE $SONAR_OPTS -Dsonar.analysis.mode=issues . The thing is that the parameter sonar.analysis.mode is not used anymore since version 7.4 but I can't find out what parameter do I need to use instead. At the build development branch I just want to check the issues related to the code and I don't want to publish anything. Only

Alternative to sonar.analysis.mode parameter

狂风中的少年 提交于 2021-01-03 06:47:09
问题 I'm using Sonarqube 7.9 and Gitlab with a maven docker image that calls my Sonarqube using mvn --batch-mode verify sonar:sonar -DskipTests=true -Drevision=$REVISION_UNSTABLE $SONAR_OPTS -Dsonar.analysis.mode=issues . The thing is that the parameter sonar.analysis.mode is not used anymore since version 7.4 but I can't find out what parameter do I need to use instead. At the build development branch I just want to check the issues related to the code and I don't want to publish anything. Only

Codemagic IOS build takes a long time to complete

耗尽温柔 提交于 2020-08-08 06:01:05
问题 I'm trying to setup my flutter app on Codemagic, but it takes about 40~50 minutes to build for IOS, the logs shows that is compiling files .c and .cc , there are a lot of those files been compiling. Is there a way to make the build faster? Am I missing some configuration? 回答1: There are some steps you can take in order to shorten your build time: As Mikhail said, make sure you don't have -v in your build arguments. Verbose mode can affect build time; Look over your dependencies and make sure