Skip to content

Commit

Permalink
update jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Smartich0ke committed Aug 19, 2023
1 parent af4feab commit 8bc5b09
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ pipeline {

stage('Clone Repository') {
agent {
label "git"
kubernetes {
label 'git'
}
}
steps {
git url: "https://github.com/Smartich0ke/FerriteCMS.git"
Expand All @@ -22,7 +24,9 @@ pipeline {

stage('Build') {
agent {
label "php-tools-8.1"
kubernetes {
label 'php-tools-8.1'
}
}

steps {
Expand All @@ -38,7 +42,9 @@ pipeline {

stage('Test') {
agent {
label "php-tools-8.1"
kubernetes {
label 'php-tools-8.1'
}
}

steps {
Expand All @@ -48,7 +54,9 @@ pipeline {

stage('Package') {
agent {
label "docker"
kubernetes {
label 'docker'
}
}

steps {
Expand All @@ -60,7 +68,9 @@ pipeline {

stage('Sign') {
agent {
label "cosign"
kubernetes {
label 'cosign'
}
}

steps {
Expand Down

0 comments on commit 8bc5b09

Please sign in to comment.