Skip to content

Commit

Permalink
Revert dirty commit (#21)
Browse files Browse the repository at this point in the history
* Speed Up Maven Builds

* Reducing unit-test runtime

* Speed up with MAVEN_OPTS

* Passing MAVEN_OPTS

* Improve build timings

* .

* .

* Use maven local repo

* Offline build

* .

* .

* Merge from upstream

* Reverting dirty commits for custom pipeline scripts.
  • Loading branch information
mundrapiyush36 authored Mar 30, 2021
1 parent 16cd96e commit 72d8d91
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 37 deletions.
6 changes: 1 addition & 5 deletions .bluemix/build_pipeline_tekton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,7 @@ properties:
- name: repository
value: ${APP_REPO}
type: integration
path: parameters.repo_url
- name: pipeline-repository
value: ${PIPELINE_REPO}
type: integration
path: parameters.repo_url
path: parameters.repo_url
- name: insights
value: ${INSIGHTS}
type: integration
Expand Down
8 changes: 2 additions & 6 deletions .build_pipeline/listener.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ spec:
default: "master"
- name: revision
description: The Revision for the Application Source Code
default: ""
- name: pipeline-repository
description: The Git Repository for the Pipeline Source Code. If empty, the Repository url will be found from toolchain
default: ""
- name: region
description: The IBM Cloud Region in which Virtual Server Instance is running
- name: api
Expand Down Expand Up @@ -128,9 +126,7 @@ spec:
- name: cos-api-key
value: $(params.cos-api-key)
- name: inventoryRepo
value: $(params.inventoryRepo)
- name: pipeline-repository
value: $(params.pipeline-repository)
value: $(params.inventoryRepo)
- name: insights
value: $(params.insights)
workspaces:
Expand Down
27 changes: 1 addition & 26 deletions .build_pipeline/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ spec:
default: "master"
- name: revision
description: The Revision for the Application Source Code
default: ""
- name: pipeline-repository
description: The Git Repository for the Pipeline Source Code. If empty, the Repository url will be found from toolchain
default: ""
- name: region
description: The IBM Cloud Region in which Virtual Server Instance is running
- name: api
Expand Down Expand Up @@ -79,38 +77,15 @@ spec:
workspaces:
- name: output
workspace: pipeline-ws
- name: git-clone-pipeline-repo
runAfter:
- git-clone
taskRef:
name: git-clone-repo
params:
- name: continuous-delivery-context-secret
value: "secure-properties"
- name: ibmcloud-apikey-secret-key
value: "apikey"
- name: repository
value: $(params.pipeline-repository)
- name: branch
value: "master"
- name: pipeline-debug
value: $(params.pipeline-debug)
workspaces:
- name: output
workspace: pipeline-ws
subpath: pipeline-repo
- name: build-source
runAfter:
- git-clone
- git-clone-pipeline-repo
taskRef:
name: toolchain-build
params:
- name: custom-script
value: |
#!/bin/bash
ls -lart .
# Your build script should go here.
# Existing template utilizes a Maven Based Java Application and hence the build steps utilizes maven mvn wrapper to build the Java Archive
Expand Down

0 comments on commit 72d8d91

Please sign in to comment.