Vertaling van "GitLab CI" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
Vor zwei Wochen hatte ich bereits einen Beitrag zum Deployment via GitLab CI geschrieben.
Two weeks ago I wrote a post about deployment via GitLab.
Damit GitLab CI weiß, welche Befehle im Container ausgeführt werden müssen, wird die Datei.gitlab-ci.yml innerhalb des Repositories erstellt.
In order for GitLab CI to know which commands in the container should be executed, the file.gitlab-ci.yml is created within the repository.
Darin steht dann, was GitLab CI machen soll, wenn ein Push ankommt.
This file stores the information, what the CI should do after a commit.
Über GitLab CI kann ich das Theme durch Pushen eines Commits automatisch auf den Staging- oder Produktiv-Server übertragen - je nachdem, ob der Push an den staging- oder master-Branch geht.
With GitLab CI I can automatically push the theme to the staging or production server after pushing a commit - depending on whether the push goes to the staging or master branch.
Die CLI war auf beiden Server installiert, aber ich habe in der GitLab CI beim Ausführen des obigen Befehls immer folgende Rückgabe bekommen
And here comes the problem: The CLI was installed on both servers, but after running the command from above on the CI I get
Im ersten Teil dieser Serie wird gezeigt wie GitLab CI Pipeline Artefakte mittels Ansible deployt werden können.
This article is the first part of a series which will show you how to deploy your GitLab CI pipeline artifacts using Ansible.
Tools wie Jenkins und GitLab CI können direkt an die OpenStack-APIs angeschlossen werden, um Ihre Integrationstests zu orchestrieren.
Tools like Jenkins, GitLab CI and others connect directly to OpenStack APIs to orchestrate your integration tests.
Der Titel ist etwas sperrig, es geht um folgendes: ich wollte über die GitLab CI (der lokale Server) einen WP-CLI-Befehl auf einem meiner Uberspaces ausführen.
I wanted to run a WP-CLI command from GitLab CI (local server) on one of my Uberspaces.
Damit dies gelingt, setzen wir auf eine stabile CI/CD Pipeline. Wir haben bereits viel Erfahrung mit dem Aufbau von Pipelines mittels GitLab CI, Jenkins oder OpenShift.
To achieve this, we depend on a stable CI/CD pipeline using GitLab CI, Jenkins or OpenShift.
Zur Definition solcher Pipelines eignet sich Gitlab CI hervorragend, daher möchte ich vorstellen, wie eine rudimentäre Pipeline-Implementierung damit aussehen könnte.
Gitlab CI is an excellent tool for defining such pipelines, so I'd like to present what a rudimentary pipeline implementation might look like.
Die Features von Gitlab CI lassen für diesen Anwendungsfall keinen Wunsch übrig und funktionieren auf jeder aktuellen Installation - ob (sogar im Free-Plan) auf oder der eigenen On-Premise-Installationen.
The features of Gitlab CI leave no wish unfulfilled for this use case and work on any current installation - whether (even in the free plan) on or your own on-premise installations.
Wie vorgestellt, kann mit Gitlab CI eine mächtige Pipeline im YAML-Format in grade mal 70 Zeilen Code erstellt werden.
As presented, Gitlab CI can create a powerful pipeline in YAML format in just 70 lines of code.
Daher beginnen wir ganz am Anfang, beim Grundgerüst der Pipeline-Definition für Gitlab CI, und legen im Gitlab-Repository unserer Anwendung.gitlab-ci.yml an.
Therefore we start at the very beginning, with the basic scaffold of the pipeline definition for Gitlab CI and create.gitlab-ci.yml in the Gitlab repository of our application.