Simple Jenkins project for the absolute beginner
First, create a GitHub project containing just a Jenkinsfile file.
In the Jenkinsfile, paste the following:
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
...
karenngugi.hashnode.dev4 min read