From ab5ebe915c9e95332634a09ed0643daa2e7c65e7 Mon Sep 17 00:00:00 2001 From: hyojeongchoi <63584457+hyojeongchoi@users.noreply.github.com> Date: Wed, 27 Sep 2023 20:09:21 +0900 Subject: [PATCH] ci: Add initial Jenkinsfile (#8) --- ci/hyojeongchoi/Jenkinsfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ci/hyojeongchoi/Jenkinsfile diff --git a/ci/hyojeongchoi/Jenkinsfile b/ci/hyojeongchoi/Jenkinsfile new file mode 100644 index 0000000..7edff4f --- /dev/null +++ b/ci/hyojeongchoi/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent any + + triggers { + githubPush() + } + + stages { + stage('Push'){ + steps { + echo 'Success to check push' + } + } + } + + +} \ No newline at end of file