|
|
|
@@ -1,66 +1,46 @@
|
|
|
|
|
\section{Introduction}
|
|
|
|
|
Gitlab-ci uses so called runners to execute the build jobs defined in the build
|
|
|
|
|
job file of a repository. A runner is a seperate tool and can be installed on
|
|
|
|
|
any machine. The type of connection is configurable. The intentions of these concept are:\\
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
\item{remove (build) environmental dependency from ci server}
|
|
|
|
|
\item{multipe runners to parallize multiple builds}
|
|
|
|
|
\end{itemize}
|
|
|
|
|
The Runner has to be installed on a machine with a proper environment (compiler,
|
|
|
|
|
...) installed for the dedicated project it is used for. Figure \ref{fig:gitlab-runner-interaction} illustrates
|
|
|
|
|
the interaction of a local workstation, the gitlab(-ci) server and the
|
|
|
|
|
gitlab-ci-multi-runner.
|
|
|
|
|
\begin{figure}
|
|
|
|
|
\begin{center}
|
|
|
|
|
\input{gitlab-runner.tex}
|
|
|
|
|
\caption{Gitlab-ci - runner interaction}
|
|
|
|
|
\label{fig:gitlab-runner-interaction}
|
|
|
|
|
\end{center}
|
|
|
|
|
\end{figure}
|
|
|
|
|
|
|
|
|
|
\section{Installation of gitlab-ci-multi-runner}
|
|
|
|
|
The Installation of the runner depends on the operating system of the host and
|
|
|
|
|
is described here: \hyperlink{https://docs.gitlab.com/runner/install/}{\texttt{https://docs.gitlab.com/runner/install}}
|
|
|
|
|
\section{Installation of a dedicated runner}
|
|
|
|
|
\subsection{Prerequisites}
|
|
|
|
|
To install a dedicated runner prerequisites has to be fullfilled:
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
\item{Url of gitlab ci coordinator}
|
|
|
|
|
\item{Registation token of that server}
|
|
|
|
|
\item{Tags - if the build job defines tags to identify runners}
|
|
|
|
|
\end{itemize}
|
|
|
|
|
These two informations can be gathered at the runners section of the project's
|
|
|
|
|
gitlab repository the runner is installed for. That section is accessible using:\texttt{<gitlab-url>/<project-path>/runners}\\
|
|
|
|
|
\textbf{Example:}\\
|
|
|
|
|
\texttt{https://novgit05.novero.com/agricola/agricola/runners}
|
|
|
|
|
\subsection{Register}
|
|
|
|
|
Open a shell an type: \texttt{gitlab-ci-multi-runner register}. An interactive
|
|
|
|
|
shell opens and requests some inputs (see prequisites).
|
|
|
|
|
\lstsetdefault
|
|
|
|
|
\section*{Pike Blue Release HowTo}
|
|
|
|
|
\subsection*{Internal release}
|
|
|
|
|
A push event to a \textit{release/...} named branch will create release
|
|
|
|
|
candidates. These release candidates are deployed to the pike blue project svn
|
|
|
|
|
repository (\texttt{http://dabsvn01.internal.novero.com/svn/\ \\
|
|
|
|
|
0\_31X\_P0610\_pike\_blue/trunk/development/software/\ \\
|
|
|
|
|
releases/release\_candidate/}).\\
|
|
|
|
|
The branch can be created eiter by gitlab ui or locally.
|
|
|
|
|
\subsubsection*{Local}
|
|
|
|
|
Checkout the new release branch:
|
|
|
|
|
\lstsetbash
|
|
|
|
|
\begin{lstlisting}
|
|
|
|
|
user@dabbld01:~$ sudo gitlab-ci-multi-runner register
|
|
|
|
|
Running in system-mode.
|
|
|
|
|
|
|
|
|
|
Please enter the gitlab-ci coordinator URL
|
|
|
|
|
(e.g. https://gitlab.com/):
|
|
|
|
|
https://novgit05.novero.com/ci
|
|
|
|
|
Please enter the gitlab-ci token for this runner:
|
|
|
|
|
<secret-token>
|
|
|
|
|
Please enter the gitlab-ci description for this runner:
|
|
|
|
|
[dabbld01]:
|
|
|
|
|
my-runner
|
|
|
|
|
Please enter the gitlab-ci tags for this runner (comma
|
|
|
|
|
separated):
|
|
|
|
|
|
|
|
|
|
Please enter the executor: shell, docker+machine,
|
|
|
|
|
docker-ssh+machine, kubernetes, docker, docker-ssh,
|
|
|
|
|
parallels, ssh, virtualbox:
|
|
|
|
|
shell
|
|
|
|
|
Runner registered successfully. Feel free to start it,
|
|
|
|
|
but if it's running already the config should be
|
|
|
|
|
automatically reloaded!
|
|
|
|
|
git checkout -b release/<release_name>
|
|
|
|
|
\end{lstlisting}
|
|
|
|
|
|
|
|
|
|
\subsection{Start as service}
|
|
|
|
|
Open a shell an type: \texttt{gitlab-ci-multi-runner start}
|
|
|
|
|
Prepare build variables in the \textit{variables} section of the build job
|
|
|
|
|
file\\(\texttt{.gitlab-ci.yml} in pike blue's root directory).
|
|
|
|
|
\begin{lstlisting}
|
|
|
|
|
variables:
|
|
|
|
|
PRODUCT_NAME: "PI"
|
|
|
|
|
PRODUCT_VARIANT: "CX"
|
|
|
|
|
PROJECT_VERSION: "20"
|
|
|
|
|
SW_MAJOR: "1"
|
|
|
|
|
SW_MINOR: "0"
|
|
|
|
|
\end{lstlisting}
|
|
|
|
|
Push the new branch to the gitlab-server:
|
|
|
|
|
\begin{lstlisting}
|
|
|
|
|
git push -u origin release/<release_name>
|
|
|
|
|
\end{lstlisting}
|
|
|
|
|
\subsection*{External release}
|
|
|
|
|
A \textit{release/\_PI\_CX\_20...} named tag in the pike blue repository at the
|
|
|
|
|
gitlab server will create a release and deploys it to the pike blue project
|
|
|
|
|
svn repository (\texttt{http://dabsvn01.internal.novero.com/svn/\ \\
|
|
|
|
|
0\_31X\_P0610\_pike\_blue/trunk/development/software/\ \\
|
|
|
|
|
releases/release/}).\\
|
|
|
|
|
The tag can be created eiter by gitlab ui or locally.
|
|
|
|
|
\subsubsection{Gitlab UI}
|
|
|
|
|
To create the tag:
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
\item go to the pike blue gitlab tags section \\
|
|
|
|
|
(\texttt{https://novgit05.novero.com/Pike/Blue/tags})
|
|
|
|
|
\item Hit the \textit{+ New tag} button
|
|
|
|
|
\item Choose a valid tag name \textit{(release/PI\_CX\_20...)}
|
|
|
|
|
\item Choose the above created release branch as source for the new tag.
|
|
|
|
|
\item Hit the \textit{Create tag} button
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
|
|