From 114a1de0956a03aea336933880a48eb3f98c88eb Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Mon, 30 Sep 2024 13:26:49 +0200 Subject: [PATCH] skelton pipeline --- tests/API-dhcp/Jenkinsfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/API-dhcp/Jenkinsfile diff --git a/tests/API-dhcp/Jenkinsfile b/tests/API-dhcp/Jenkinsfile new file mode 100644 index 0000000..09afe46 --- /dev/null +++ b/tests/API-dhcp/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +}