Posts by dalmo.santos • 41 points
8 posts
-
0
votes1
answer130
viewsA: Msbuild doubt about compilation C#
Then, about msbuild, you can compare the parameters that you build with Visual Studio. Example: /t:TestTarget /p:VisualStudioVersion=12.0 /p:Configuration=Release /p:Platform="Any CPU"…
-
0
votes1
answer45
viewsA: Read timed out when running Sonarscanner using Jenkins
Whoa, that’s all right ? About the containers, are they in the same 'network' ? See the example of Docker-Compose below: version: "3" networks: stack: driver: bridge volumes: jenkins_data: {}…
-
0
votes1
answer21
viewsA: Jenkins Deploy to glassfish4 container
Whoa, all right ? By chance, you tried to use the Deploy to Container Plugin ? It makes the Glassfish 2.x/3.x/4.x remote Deployment. .…
-
0
votes1
answer117
viewsA: Jenkins - Pentaho execute script as logged in user
Oops! You can install the Psexec, to enter the user and password and run the script using the following command: psexec \\computername -u domain\user -p password You can put to run on Jenkins' Job.…
-
0
votes1
answer130
viewsA: NGINX proxy_pass application for root site
Hi! It shows error, because the parameter was not passed --prefix=/jenkins , when I started Jenkins. See this link as a reference.…
nginxanswered dalmo.santos 41 -
1
votes1
answer63
viewsA: Versioning data recorded in Jenkins
Hi! You can save the settings and Jobs with the thinBackup plugin. If you’re working with agile infrastructure, I recommend Jenkins Configuration as Code.…
jenkinsanswered dalmo.santos 41 -
0
votes1
answer112
viewsA: Error generating Angular Project Build
Hi! Which version of angular, npm and webpack ? About the webpack Take a look at this file: \projectClient node_modules@angular-devkit build-angular src angular-cli-files models webpack-configs…
angularanswered dalmo.santos 41 -
0
votes1
answer251
viewsA: How do I use Jenkins to see which files were modified in the commit?
I am working with PHP and Mysql on Windows, my repository is in Gitlab. I wish to use Jenkins to run a job or pipeline when pushing to the repository. About the push changes from Gitlab to Jenkins,…