Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

GitLab for SQL Server Projects

$
0
0

This is the seventh part in the series: SQL Server and Continuous Integration .This post demonstrates the use of GitLab to build SQL Server projects. I use ReadyRoll for my SQL Server projects but SSDT projects could also be built with GitLab. Topics covered so far in this series are:

Git Visual Studio ReadyRollInstallation ReadyRoll Configuration ReadyRoll Development

I’ve installed the free community edition of GitLab on an Ubuntu VM running on Hyper-V. Instructions for most operating systems can be found here .

I’ll be using my ReadyRoll project, RR_Test, that I created earlier in this series. So far, I have only made commits to my local repository. I want to push my repo to GitLab so that other members of the team can pull my changes and push their own.

First, browse to the IP address of your new GitLab server and create a new project.


GitLab for SQL Server Projects

Copy the HTTP URL on the next screen.


GitLab for SQL Server Projects

Open a solution in Visual Studio. Then use the Team Explorer panel topublish the local repository to the remote repository on GitLab.


GitLab for SQL Server Projects

In the “Add Remote” dialogue box that appears, paste the URL (from the GitLab project screen) to add it as a remote repository.


GitLab for SQL Server Projects

Refresh the project page to see that the repo has been received with all its files and commits.


GitLab for SQL Server Projects

A GitLab project is not just a remote repository for code; there is awiki for documentation and an issue system for the newfeatures and bugs to be implemented. The issue system has a board section that you will be familiar with if you have used tools likeTrello.


GitLab for SQL Server Projects

The next step is to setup automatic builds, tests and deployments. This will require a runner, a pipeline and a YAML file, all of which I will cover in the next post.


Viewing all articles
Browse latest Browse all 3160

Latest Images

Trending Articles