Is Continuous Integration important for a solo developer? [closed]

The basic concept of CI is that you have a system that builds the code and runs automated tests everytime someone makes a commit to the version control system. These tests would include unit and functional tests, or even behavior driven tests. The benefit is that you know – immediately – when someone has broken … Read more

WiX 3.0 throws error 217, while being executed by continuous integration

End of the story: After fiddling with the permissions of the integration account, DCOM, service activation, etc. without any luck, I finally simply disabled ICE validation in the continuous integration build, while still keeping it in the local build. To disable ICE validation you can set SuppressValidation to true in the .wixproj file: <PropertyGroup> <SuppressValidation>true</SuppressValidation> … Read more

How can I suppress the “No files matching the pattern” message in ESLint?

What worked for me was changing single quotes to escaped double quotes So from: “lint”: “eslint ‘**/*.{ts,tsx}'” To: “lint”: “eslint \”**/*.{ts,tsx}\”” The reason is because it depends on the console you are using – possibly the operation system (that’s why it can work for you while it’s not working for others and via versa) Source: … Read more

Jenkins/Hudson – accessing the current build number?

BUILD_NUMBER is the current build number. You can use it in the command you execute for the job, or just use it in the script your job executes. See the Jenkins documentation for the full list of available environment variables. The list is also available from within your Jenkins instance at http://hostname/jenkins/env-vars.html.

How to combine Vagrant with Jenkins for the perfect Continuous Integration Environment?

it is a good solution for build system, my suggestion: Your current jenkins works as master CI (probably started by user jenkins) Create another user in same machine or another machine to work as jenkins slave mode jenkins slave can be invoked from jenkins master, and it can use different user like vagrant who had … Read more

Handling multiple branches in continuous integration

When you talk about scaling CI you’re really talking about scaling the use of your CI server to handle all your feature branches along with your mainline. Initially this looks like a good approach as the developers in a branch get all the advantages of the automated testing that the CI jobs include. However, you … Read more

Running multiple TeamCity Agents on the same computer?

Yes, it’s possible: Several agents can be installed on a single machine. They function as separate agents and TeamCity works with them as different agents, not utilizing the fact that they share the same machine. After installing one agent you can install additional one, providing the following conditions are met: the agents are installed in … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)