Bitbucket Pipeline: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
       - step:
       - step:
           name: Build and Deploy Releases Artifact
           name: Build and Deploy Releases Artifact
          caches:
            - maven
           script:
           script:
             - bash <(curl -s 'http://cdn.chorke.org/repo/mvn/settings.sh.txt')
             - bash <(curl -s 'http://cdn.chorke.org/repo/mvn/settings.sh.txt')

Revision as of 17:24, 1 June 2019

image: 3.3.9-jdk-7
pipelines:
  branches:
    master:
      - step:
          name: Build and Deploy Releases Artifact
          caches:
            - maven
          script:
            - bash <(curl -s 'http://cdn.chorke.org/repo/mvn/settings.sh.txt')
            - mvn -B verify
            - mvn -B -s settings.xml deploy

Docker Images

https://hub.docker.com/_/maven
3.3.3-jdk-7, 3.3.3-jdk-8, 3.3.3-jdk-9
3.3.9-jdk-7, 3.3.9-jdk-7-alpine
3.3.9-jdk-8, 3.3.9-jdk-8-alpine

References