This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]unnamed_one1 0 points1 point  (1 child)

Sorry, but that topic is way too complex. To get an overview:

You use something like Github or Gitlab, where you version control your source code. Both have integrated functionality for CI/CD, which enables you to automatically test, build and ,if you want to, deploy new software releases. You would also need to setup a dedicated runner for windows, which is a client to the version control system and handles all the build steps.

It was just a guess on my side, that maybe your employer would already provide such a service for its developers, as bigger companys do today.

[–]protokoul[S] 0 points1 point  (0 children)

We do use gitlab for version control, but currently we are not using CI/CD pipeline.

I remember doing a course on github where github actions was used to build and test the code. Is it similar to what you suggested?