Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Test #54

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open

Test #54

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8e7a735
test
bhargavkeshav Jun 24, 2019
016ad43
testing the poll
bhargavkeshav Jun 24, 2019
5799334
jenkinsfile
bhargavkeshav Jul 12, 2019
b40cb38
Create Jenkinsfile
bhargavkeshav Jul 12, 2019
41b0ec4
Update Jenkinsfile
bhargavkeshav Jul 15, 2019
e7274e4
Update Jenkinsfile
bhargavkeshav Jul 15, 2019
5b602a1
Update Jenkinsfile
bhargavkeshav Jul 15, 2019
d183a1d
Update Jenkinsfile
bhargavkeshav Jul 15, 2019
d9c8b39
updated readme
bhargavkeshav Jul 15, 2019
e8b1034
Update README.md
bhargavkeshav Jul 15, 2019
9d975f4
Update Jenkinsfile
bhargavkeshav Jul 26, 2019
40efed7
Merge branch 'master' into test
bhargavkeshav Jul 26, 2019
ccf15d7
update readme
bhargavkeshav Jul 26, 2019
a079f60
Merge pull request #3 from bhargavkeshav/test-2
bhargavkeshav Aug 7, 2019
03792c7
Update README.md
bhargavkeshav Aug 7, 2019
7e13aa1
Update README.md
bhargavkeshav Aug 7, 2019
c4b0cce
Update README.md
bhargavkeshav Aug 7, 2019
02449fc
Update LICENSE
bhargavkeshav Aug 7, 2019
0661751
Update LICENSE
bhargavkeshav Aug 7, 2019
0762b96
Update README.md
bhargavkeshav Aug 7, 2019
5a20708
Update LICENSE
bhargavkeshav Aug 8, 2019
986bcc3
Update LICENSE
bhargavkeshav Aug 8, 2019
f47e65f
Update Jenkinsfile
bhargavkeshav Sep 19, 2019
659630e
Update README.md
bhargavkeshav Sep 20, 2019
fb35f8f
Update readme
bhargavkeshav Sep 20, 2019
afe5536
update readme
bhargavkeshav Sep 20, 2019
ea2ff4a
updated readme
bhargavkeshav Sep 23, 2019
f803942
Update README.md
bhargavkeshav Sep 30, 2019
ed620dc
Update README.md
bhargavkeshav Sep 30, 2019
cdcbea5
Update README.md
bhargavkeshav Jun 24, 2020
248b6e6
Update README.md
bhargavkeshav Jun 24, 2020
99ecf58
Merge branch 'master' into test
bhargavkeshav Jun 24, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env groovy

def label = "is-jenkins-${UUID.randomUUID().toString()}"

podTemplate(name: label, label: label, nodeSelector: 'function=docker_workers', containers: [
containerTemplate(name: 'docker', image: 'docker:stable-dind', ttyEnabled: true, command: 'cat'),
], volumes: [hostPathVolume(hostPath: '/var/run/docker.sock', mountPath: '/var/run/docker.sock')]) {

node(label) {
ansiColor('xterm') {

stage('Clean Docker Image') {
container('docker') {
sh"""
echo "y"|docker system prune -a
"""
}
}
stage('Clean Docker Image') {
build job: 'test-param-trigger', parameters: [string(name: 'BRANCH', value: env.BRANCH_NAME), string(name: 'ENVIRONMENT', value: 'STAGE'), string(name: 'SLACK_ROOM', value: 'cx-eng')]
}
}
}
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.


"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@

# orders
A microservices-demo service that provides ordering capabilities.

This build is built, tested and released by travis.

# API Spec

Checkout the API Spec [here](http://microservices-demo.github.io/api/index?url=https://raw.githubusercontent.com/microservices-demo/orders/master/api-spec/orders.json)

# Build
test

## Jar
`mvn -DskipTests package`
Expand All @@ -28,4 +27,4 @@ Checkout the API Spec [here](http://microservices-demo.github.io/api/index?url=h
`curl http://localhost:8082`

# Push
`GROUP=weaveworksdemos COMMIT=test ./scripts/push.sh`
`GROUP=weaveworksdemos COMMIT=test ./scripts/push.sh