Skip to content

Commit

Permalink
Jenkinsfile - pipeline inteiro
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislima committed Apr 24, 2024
1 parent 9edb5e1 commit 8cbcf4c
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,31 @@ pipeline {

}


stage('Test'){

steps {
echo 'Testing...'
sh '''
cd Aula-GitHub-Actions
mvn clean test site
'''
}

}

stage('Notification'){

steps {
echo 'Notification...'
sh '''
cd scripts
chmod 775 *
./jenkins.sh
'''
}

}

}

}

0 comments on commit 8cbcf4c

Please sign in to comment.