continuous-deployment

Task VSBuild failed. This caused the job to fail

随声附和 提交于 2019-12-11 05:13:00
问题 I am getting following error while Automating my build. I am using Visual Studio Team Services (was VSO) and Visual Studio 2015. [error]System.Exception: Task VSBuild failed. This caused the job to fail. Look at the logs for the task for more details. [error] at Microsoft.TeamFoundation.DistributedTask.Worker.JobRunner.Run(IJobContext jobContext, IJobRequest job, IJobExtension jobExtension, CancellationTokenSource tokenSource) Please find the attached images for details which I have mentioned

Azure Function / Azure Website Custom Deploy Script Ending Prematurely

夙愿已清 提交于 2019-12-11 04:56:41
问题 I've got a custom batch deployment script for an Azure Function which is ending prematurely without erroring out. I'm hoping someone can help me understand what is going on. The problematic portion appears to be in the "Pre-deployment" section of the script: for /F %%f in ('git.exe diff --name-only %PREVIOUS_SCM_COMMIT_ID% %SCM_COMMIT_ID% ^| grep package.json') do ( SET PACKAGEJSON=%%~f SET PKGFOLDER=!DEPLOYMENT_SOURCE!\!PACKAGEJSON:package.json=! echo "NPM Install: !PKGFOLDER!package.json"

Continuous Integration, Continuous Delivery, Continuous Deployment from their application perspectives

旧街凉风 提交于 2019-12-10 20:45:15
问题 I am using Visual Studio, TFS 2015, Visual Studio Team Services, and Azure/ Local or Remote IIS for achieving Continuous Integration. I am reading from below stackoverflow Continuous Integration vs. Continuous Delivery vs. Continuous Deployment Me / my team check in the code to TFS repository and configured automated build each time I check in the code; is it Continuous Integration? I have configured the build. It runs nuget package manager, runs Tests, performs Build and drops the built

Named entity recognition with a small data set (corpus)

半城伤御伤魂 提交于 2019-12-08 07:12:52
问题 I want to develop a Named entity recognition system in Persian language but we have a small NER tagged corpus for training ans test. Maybe In the future we'll have a better and bigger corpus. By the way I need a solution that get incrementally the better performance whenever the new data added without with merge the new data with old data and training from scratch. Is there any solution ? 回答1: Yes. With your help: it is a work in progress. It is JS and "No training ..." Please see https:/

Best practices when implementing CI/CD pipeline using GitHub/Jenkins/Kubernetes

戏子无情 提交于 2019-12-08 04:58:57
问题 This question is more advice related so I hope its not flagged for anything. Just really need help :( Trying to implement CI/CD using GitHub/Jenkins/Kubernetes. On a highlevel this is what should happen: Build on Jenkins Push to container registry Deploy built image on Kubernetes development cluster Once testing finished on Development cluster, deploy it on a client testing cluster and finally production cluster So far this is what I have created a job on Jenkins which will be triggered using

Best practices when implementing CI/CD pipeline using GitHub/Jenkins/Kubernetes

强颜欢笑 提交于 2019-12-08 04:48:32
This question is more advice related so I hope its not flagged for anything. Just really need help :( Trying to implement CI/CD using GitHub/Jenkins/Kubernetes. On a highlevel this is what should happen: Build on Jenkins Push to container registry Deploy built image on Kubernetes development cluster Once testing finished on Development cluster, deploy it on a client testing cluster and finally production cluster So far this is what I have created a job on Jenkins which will be triggered using a Github hook. This job is responsible for the following things: Checkout from GitHub Run unit tests /

dotnet core deployment to azure app service using teamcity

十年热恋 提交于 2019-12-08 02:44:51
问题 I have a dotnet core app. I am building a pipeline in teamcity. and once the teamcity detects the change in the cource code, It downloads the source code runs dotnet restore dotnet build and copies the content in the output folder to Azure app service. I believe to run the app i need to run the command dotnet nameoftheprojectdll.dll but how can I run this command on the app service. and I need to run this command as part of a build script. 回答1: The Short Answer You need to use the dotnet

Jenkins: Command /usr/bin/codesign failed with exit code 1

瘦欲@ 提交于 2019-12-07 19:30:29
问题 I am able to archive ios project using below commands cordova build ios --device --debug and cordova build ios --device --release But when i try to do same from jenkins i am getting below error. 11:08:01 SecKey API returned: -25308, (null)/Users/Jenkins/Library/Developer/Xcode/DerivedData/GRC_Pulse-ebufuetkmalmfxbiegclmzuryhrm/Build/Intermediates/ArchiveIntermediates/GRC Pulse/InstallationBuildProductsLocation/Applications/GRC Pulse.app: unknown error -1=ffffffffffffffff 11:08:01 Command /usr

Named entity recognition with a small data set (corpus)

﹥>﹥吖頭↗ 提交于 2019-12-07 07:55:31
I want to develop a Named entity recognition system in Persian language but we have a small NER tagged corpus for training ans test. Maybe In the future we'll have a better and bigger corpus. By the way I need a solution that get incrementally the better performance whenever the new data added without with merge the new data with old data and training from scratch. Is there any solution ? Yes. With your help: it is a work in progress. It is JS and "No training ..." Please see https://github.com/redaktor/nlp_compromise/ ! It is a fork where I worked on NER during the last days and it will be

How to implement continuous deployment for a web service

心不动则不痛 提交于 2019-12-07 05:58:24
问题 I have a Java application, which runs inside web container (Jetty at the moment) and responds to requests via web services. Now I want to create a mechanism, which allows to deploy (transfer the WAR file to the server, install the new version there) a new version of the application to Amazon EC2 instance as easily as possible (ideally - by running some Maven command). I'm using Beanstalk for my version control and they offer deployment support, but I couldn't figure out how to apply it to my