From e9475bbe50413377b7c36d758f2cc5ea146845bc Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Mon, 9 Dec 2024 09:01:44 +1100 Subject: [PATCH] Remove jenkins file (#582) --- Jenkinsfile | 78 ----------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 33a6543be..000000000 --- a/Jenkinsfile +++ /dev/null @@ -1,78 +0,0 @@ -pipeline { - agent { - docker { - image 'px4io/px4-docs:2020-01-05' - } - } - stages { - - stage('Build') { - environment { - HOME = "${WORKSPACE}" - } - - steps { - sh('export') - checkout(scm) - sh('gitbook install') - sh('gitbook build') - stash(includes: '_book/', name: 'gitbook') - // publish html - publishHTML(target: [ - reportTitles: 'Mavlink Dev Guide', - allowMissing: false, - alwaysLinkToLastBuild: true, - keepAll: true, - reportDir: '_book', - reportFiles: '*', - reportName: 'Mavlink Dev Guide' - ]) - } - - } // Build - - stage('Deploy') { - environment { - GIT_AUTHOR_EMAIL = "bot@px4.io" - GIT_AUTHOR_NAME = "PX4BuildBot" - GIT_COMMITTER_EMAIL = "bot@px4.io" - GIT_COMMITTER_NAME = "PX4BuildBot" - } - - steps { - sh('export') - unstash('gitbook') - withCredentials([usernamePassword(credentialsId: 'px4buildbot_github_personal_token', passwordVariable: 'GIT_PASS', usernameVariable: 'GIT_USER')]) { - sh('git clone https://${GIT_USER}:${GIT_PASS}@github.com/mavlink/mavlink.io.git') - //sh('rm -rf mavlink.io/${BRANCH_NAME}') - //sh('mkdir -p mavlink.io/${BRANCH_NAME}') - //sh('cp -r _book/* mavlink.io/${BRANCH_NAME}/') - //sh('cd mavlink.io; git add ${BRANCH_NAME}; git commit -a -m "gitbook build update `date`"') - sh('cp -r _book/* mavlink.io/') - sh('cd mavlink.io; git add .; git commit -a -m "gitbook build update `date`"') - sh('cd mavlink.io; git push origin master') - - } - } - post { - always { - sh('rm -rf mavlink.io') - } - } - when { - anyOf { - branch "master" - branch "pr-jenkins" - } - } - - } // Deploy - } // stages - - options { - buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30')) - skipDefaultCheckout() - timeout(time: 60, unit: 'MINUTES') - } - -}