From 2876c577685dd8d023ecb78faedbdee17f7ba0d7 Mon Sep 17 00:00:00 2001 From: Tim203 Date: Sat, 30 Dec 2023 21:22:59 +0100 Subject: [PATCH] We no longer use Jenkins --- Jenkinsfile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index f9dbc474..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,30 +0,0 @@ -pipeline { - agent any - tools { - gradle 'Gradle 7' - jdk 'Java 17' - } - options { - buildDiscarder(logRotator(artifactNumToKeepStr: '5')) - } - stages { - stage ('Build') { - steps { - sh 'git submodule update --init --recursive' - rtGradleRun( - usesPlugin: true, - tool: 'Gradle 7', - buildFile: 'build.gradle.kts', - tasks: 'clean build', - ) - } - post { - success { - archiveArtifacts artifacts: '**/build/libs/floodgate-*.jar', - excludes: '**/floodgate-parent-*.jar,**/floodgate-api.jar,**/floodgate-core.jar', - fingerprint: true - } - } - } - } -} \ No newline at end of file