From 44d81888833ac692cfdc0de6984cbf3657c6976c Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 2 Feb 2020 21:15:45 +0000 Subject: - Disabled BB Pipeline for build process. --- bitbucket-pipelines.yml | 19 ------------------- bitbucket-pipelines.yml.disabled | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 bitbucket-pipelines.yml create mode 100644 bitbucket-pipelines.yml.disabled diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 0009fd8ee4..0000000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,19 +0,0 @@ -# This is a sample build configuration for Java (Gradle). -# Check our guides at https://confluence.atlassian.com/x/zd-5Mw for more examples. -# Only use spaces to indent your .yml configuration. -# ----- -# You can specify a custom docker image from Docker Hub as your build environment. -image: openjdk:8 - -pipelines: - default: - - step: - caches: - - gradle - script: # Modify the commands below to build your repository. - # You must commit the Gradle wrapper to your repository - # https://docs.gradle.org/current/userguide/gradle_wrapper.html - - bash ./gradlew build - artifacts: # defining the artifacts to be kept. - - build/libs/*.jar - - build/libs/proguard.map \ No newline at end of file diff --git a/bitbucket-pipelines.yml.disabled b/bitbucket-pipelines.yml.disabled new file mode 100644 index 0000000000..0009fd8ee4 --- /dev/null +++ b/bitbucket-pipelines.yml.disabled @@ -0,0 +1,19 @@ +# This is a sample build configuration for Java (Gradle). +# Check our guides at https://confluence.atlassian.com/x/zd-5Mw for more examples. +# Only use spaces to indent your .yml configuration. +# ----- +# You can specify a custom docker image from Docker Hub as your build environment. +image: openjdk:8 + +pipelines: + default: + - step: + caches: + - gradle + script: # Modify the commands below to build your repository. + # You must commit the Gradle wrapper to your repository + # https://docs.gradle.org/current/userguide/gradle_wrapper.html + - bash ./gradlew build + artifacts: # defining the artifacts to be kept. + - build/libs/*.jar + - build/libs/proguard.map \ No newline at end of file -- cgit