Migrate teamcity pipeline to gitlab - migration

How to migrate a teamcity pipeline to gitlab?
I checked online and could only find integration related stuff.
Please advise

Related

IntelliJ IDEA GitLab integration

Does InteliJ IDEA has GitLab integration? I couldn't find any Merge Requests and Code Review management. May be some plugins are needed? Could you advice?
GitLab integration is in the progress of active development, please see and follow IDEA-109294.
There are a few 3rd-party plugins that implement GitLab functionality:
GitLab Merge Requests.
Merge Request Integration CE - Code Review for GitLab.
GitLab Projects 2020.

Azure DevOps pipeline for a Kotlin project

I'm trying to build a CI pipeline for a Kotlin project developed on Android Studio. Using Azure DevOps pipelines.
I'm having an issue finding a Kotlin plugin or Tasks for the pipeline as we can see in the picture.
Anyone have an idea about how can we implement this type of pipeline? I didn't find anything on the internet and Microsoft have no documentation.
If I understand correctly the answer you are looking for is the Gradle task. Here is a blog from someone using gradle and in azure devops with their Kotlin code. But I am sure there are more details around how to set up gradle task for kotlin build.
The issue was not with Kotlin or Java. The issue was with the SDK being used on the Hosting Agent.
The solution was the following steps:
Upload a SDK to Azure Blob Storage
Use the Use Java Task in order to install the specified SDK
Run the Android Pipeline with Sonarqube tasks, build was successfully run and SonarQube Code Review was successfully executed.

Allure2 How to integrate it with Jira Xray

I am trying to integrate Allure2 reports with Jira plugin called Xray. So far i managed to generate those reports on local machine and on Jenkins server in pipeline job with Allure plugin.
Also i see that there is an actual Allure plugin called xray-plugin on Allure Framework GitHub, however instructions how to use this plugin are not clear enough for me (for example, where one should put those Jira env variables?).
Can someone here explain in more clear manner how to integrate Allure2 with x-ray?

Deployit integration with Gitlab

I was using deployit (XLdeploy) with Jenkins and SVN as repo, but now I am planning to move to Gitlab. Is there any good documentation on how to integrate Gitlab with deployIT? I have searched but didn't get any reference documents.
Where should I start with this?
Is it the case that XLdeploy has come up with some integration with Gitlab?

I am using Selenium with java , and I want to do the setup of CI ustin Gitlab CI

I have been trying to find out how should I execute the Selenium Test (Java) using gitlab CI
I have created an automation framework and I am able to run the maven project via jenkins
I wanted to run the same maven project with the help of gitlab ci runner
My Code will be available on git and just need to trigger the execution as a when developer checks in the code
Please help me out with this setup, I have been trying to find out the solution but couldn't figure out any
I suggest you to read about jeknins and gitlab hooks here: https://docs.gitlab.com/ee/integration/jenkins.html
, In general, these hooks "follows" any push you perform to you gitlab repository, and run the desired build on them, including pulling the latest code.