From 28afb28241e5a8ab3f7d77e2fe89528197007090 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Sun, 24 Mar 2024 10:48:53 -0700 Subject: [PATCH] Remove bitbucket build config. --- bitbucket-pipelines.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 2102ecfb..00000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,39 +0,0 @@ -# Template maven-build - -# This template allows you to test and build your Java project with Maven. -# The workflow allows running tests, code checkstyle and security scans on the default branch. - -# Prerequisites: pom.xml and appropriate project structure should exist in the repository. - -image: maven:3.8.7 - -pipelines: - branches: - '{master,develop}': - - step: - name: Build and Test - caches: - - node - - maven - - docker - script: - # Compile sources ... - - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash - - . $HOME/.nvm/nvm.sh && nvm install node - - mvn clean install --file pom.xml -DskipTests - # Publish to docker repo ... - - docker login --username $DOCKER_USERNAME --password $DOCKER_PASSWORD - - docker build -t wisemapping/wisemapping:latest -f distribution/Dockerfile wise-webapp/target/ - - docker push wisemapping/wisemapping:latest - after-script: - # Collect checkstyle results, if any, and convert to Bitbucket Code Insights. - - pipe: atlassian/checkstyle-report:0.3.0 - services: - - docker - - step: - name: Security Scan - script: - # Run a security scan for sensitive data. - # See more security tools at https://bitbucket.org/product/features/pipelines/integrations?&category=security - - pipe: atlassian/git-secrets-scan:0.5.1 -