From 9ada60cdd28b6a3994e3bbb0f2143febe185ff8a Mon Sep 17 00:00:00 2001 From: idvylyuk Date: Tue, 26 Nov 2024 14:37:30 +0200 Subject: [PATCH] build: added Jenkinsfile --- Jenkinsfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..bc7b63772 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,34 @@ +pipeline{ + agent{ + label "ubuntu-agent" + } + stages{ + stage("A"){ + steps{ + echo "========executing A========" + } + post{ + always{ + echo "========always========" + } + success{ + echo "========A executed successfully========" + } + failure{ + echo "========A execution failed========" + } + } + } + } + post{ + always{ + echo "========always========" + } + success{ + echo "========pipeline executed successfully ========" + } + failure{ + echo "========pipeline execution failed========" + } + } +} \ No newline at end of file