From 62ba13bee1a0caf3b274636a5d7d5c3d378d4131 Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Wed, 15 Apr 2026 15:18:09 +0530 Subject: [PATCH 1/6] Create test --- test | 1 + 1 file changed, 1 insertion(+) create mode 100644 test diff --git a/test b/test new file mode 100644 index 0000000..b7f96ab --- /dev/null +++ b/test @@ -0,0 +1 @@ +test content for pr check From d9e4cf617cdbc1976b36b00b7be4bf8ec1778e7e Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Wed, 22 Apr 2026 12:42:46 +0530 Subject: [PATCH 2/6] Update test --- test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test b/test index b7f96ab..9c03390 100644 --- a/test +++ b/test @@ -1 +1,3 @@ + +added test content for pr check From d6aade60fa1ed5413b421aa7ca8af5b0ecdfe6f6 Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Wed, 22 Apr 2026 13:10:08 +0530 Subject: [PATCH 3/6] Rename test to test1 --- test => test1 | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test => test1 (100%) diff --git a/test b/test1 similarity index 100% rename from test rename to test1 From b84cec01cd9b668b29352fa0e3477f2be5953838 Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Wed, 22 Apr 2026 13:12:23 +0530 Subject: [PATCH 4/6] Create prfile --- prfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 prfile diff --git a/prfile b/prfile new file mode 100644 index 0000000..a40a362 --- /dev/null +++ b/prfile @@ -0,0 +1 @@ +hdu From d18ce2dd9991b6bfb84cad26dda2ca96199b1a92 Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Wed, 22 Apr 2026 18:17:34 +0530 Subject: [PATCH 5/6] Update test1 --- test1 | 1 + 1 file changed, 1 insertion(+) diff --git a/test1 b/test1 index 9c03390..8f73db3 100644 --- a/test1 +++ b/test1 @@ -1,3 +1,4 @@ added test content for pr check +testing for pr From ad504e9d092173617ad356c3f619c309d89f349f Mon Sep 17 00:00:00 2001 From: GohilaSenthil Date: Thu, 23 Apr 2026 15:49:58 +0530 Subject: [PATCH 6/6] Update Jenkinsfile --- Jenkinsfile | 54 ----------------------------------------------------- 1 file changed, 54 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2aae855..5f25589 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,58 +5,4 @@ if (env.CHANGE_ID) { } else { postMergePipeline() } -node('build-slave') { - try { - String ANSI_GREEN = "\u001B[32m" - String ANSI_NORMAL = "\u001B[0m" - String ANSI_BOLD = "\u001B[1m" - String ANSI_RED = "\u001B[31m" - String ANSI_YELLOW = "\u001B[33m" - ansiColor('xterm') { - stage('Checkout') { - if (!env.hub_org) { - println(ANSI_BOLD + ANSI_RED + "Uh Oh! Please set a Jenkins environment variable named hub_org with value as registery/sunbidrded" + ANSI_NORMAL) - error 'Please resolve the errors and rerun..' - } - else - println(ANSI_BOLD + ANSI_GREEN + "Found environment variable named hub_org with value as: " + hub_org + ANSI_NORMAL) - cleanWs() - if (params.github_release_tag == "") { - checkout scm - commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() - branch_name = sh(script: 'git name-rev --name-only HEAD | rev | cut -d "/" -f1| rev', returnStdout: true).trim() - build_tag = branch_name + "_" + commit_hash + "_" + env.BUILD_NUMBER - println(ANSI_BOLD + ANSI_YELLOW + "github_release_tag not specified, using the latest commit hash: " + commit_hash + ANSI_NORMAL) - } - else { - def scmVars = checkout scm - checkout scm: [$class: 'GitSCM', branches: [[name: "refs/tags/$params.github_release_tag"]], userRemoteConfigs: [[url: scmVars.GIT_URL]]] - build_tag = params.github_release_tag + "_" + env.BUILD_NUMBER - println(ANSI_BOLD + ANSI_YELLOW + "github_release_tag specified, building from github_release_tag: " + params.github_release_tag + ANSI_NORMAL) - } - echo "build_tag: " + build_tag - } - - stage('Build') { - env.NODE_ENV = "build" - sh("git clone https://github.com/NodeBB/NodeBB.git -b ${params.nodebb_branch}") - sh("cp Dockerfile NodeBB") - sh("cp build.sh NodeBB") - print "Environment will be : ${env.NODE_ENV}" - sh('chmod 777 NodeBB/build.sh') - sh("bash ./NodeBB/build.sh ${params.nodebb_branch}__${build_tag} ${env.NODE_NAME} ${hub_org}") - } - stage('ArchiveArtifacts') { - archiveArtifacts "metadata.json" - currentBuild.description = "${build_tag}" - } - } - - } - catch (err) { - currentBuild.result = "FAILURE" - throw err - } - -}