After build happens in Jenkins,Iam trying to do package of node.js application in jenkins
I think you will find the NodeJS Jenkins plugin provides the functionality you are describing.
Related
I actually only have a Node.js CLI application which I want to package as an AppImage and maybe even with auto-updater functionality. So is it possible to use electron-builder for a Node.js application without Electron?
If not, is there some other tool out there which can bundle a Node.js application into an AppImage?
I tried to configure jenkins that is mounted on a server with linux, is it possible to install msbuild.exe to compile a .NET application? or is it necessary for Jenkins to be on a windows server?
The .NET Core SDK can be installed on Linux and comes with a tool called dotnet which can work pretty similar to MSBuild when you run it as dotnet build.
It depends on what purpose. If it is to study, I recommend installing Jenkins on a Windows Server, then installing the .Net Framework SDK that you want to use.
If it is a productive environment, I recommend installing Jenkins Master on Linux Server and a Slave on Windows Server, then installing the .Net Framework SDK that you want to use. So you do not overload the Jenkins as you compile.
If you look at the version of the .Net Framework SDK, because if any font needs something specific, you will have to install the Microsoft Windows SDK.
For configuration see this link.
is it possible to deploy osx apps using Gitlab CI ? Default Gitlab is running on linux but what I would like to get is build electron app for osx. It is possible only on osx system.
Thanks for help.
Best regards
Gitlab currently offers only shared linux runners for free. Unfortunately, there is no way to build electron app for osx using Gitlab CI.
Gitlab is currently working to make shared macOS runners available. You can track the progress here: https://gitlab.com/gitlab-com/gl-infra/infrastructure/issues/5720
I have a Jenkins installed on a Linux build server and I need a project to be deployed on a Windows machine. Jenkins builds a simple zip package that contains an executable. The package can be uploaded with FTP.
But how to deploy that package after uploading? Call a batch script for example. For Linux servers I just use "Publish Over SSH Plugin" plugin.
Using Jenkins ver. 1.638.
You need to know some powershell and use the Jenkins powershell plugin.
But i propose your to Dockerize the project and deploy like that.
I'd like to run a node.js application from Maven (https://github.com/mdevils/node-jscs in particular), and if any errors are found then print them to the console and break the build.
Are there any well-maintained Maven plugins that integrate with node.js in this way?