diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..7905017d --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,26 @@ +pipeline { + agent any + stages { + stage('Startup'){ + steps { + echo 'Building is started' + } + } + } + stage('Pre-building'){ + steps{ + echo 'Building the project..' + sh 'cmake...' + sh 'make' + } + } + stage('Test'){ + steps{ + echo 'Testing the project..' + + } + } + } +} + + diff --git a/ReadMe.txt b/ReadMe.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/ReadMe.txt @@ -0,0 +1 @@ +