Skip to content

Instantly share code, notes, and snippets.

View ajax13's full-sized avatar

Abir Brahem ajax13

  • Paris
View GitHub Profile
@ajax13
ajax13 / Jenkinsfile
Last active December 4, 2022 12:03 — forked from jskarpe/Jenkins-php-pipeline
Jenkins file for symfony pipeline project written in groovy
repositoryUrl = "https://github.com/xxx/yyy.git"
branch = "zzz"
pipeline {
agent any
stages {
stage('Clone sources') {
steps {
git url: repositoryUrl, credentialsId: "git-credentials", branch: branch