mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 16:45:09 +00:00
Update the applications and scripts to use the new v2 SDKs and the new lifecycle Add in a basic script based on the readme.md that does a basic run of the scenario Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
trigger:
|
|
- master
|
|
- release-1.4
|
|
|
|
jobs:
|
|
- job: fabcar_go
|
|
displayName: FabCar (Go)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: fabcar-go.yml
|
|
- job: fabcar_java
|
|
displayName: FabCar (Java)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: fabcar-java.yml
|
|
- job: fabcar_javascript
|
|
displayName: FabCar (JavaScript)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: fabcar-javascript.yml
|
|
- job: fabcar_typescript
|
|
displayName: FabCar (TypeScript)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: fabcar-typescript.yml
|
|
- job: commercialpaper_javascript
|
|
displayName: CommercialPaper (JavaScript)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: commercialpaper-javascript.yml
|
|
- job: commercialpaper_java
|
|
displayName: CommercialPaper (Java)
|
|
pool:
|
|
vmImage: ubuntu-18.04
|
|
dependsOn: []
|
|
timeoutInMinutes: 60
|
|
steps:
|
|
- template: install-deps.yml
|
|
- template: install-fabric.yml
|
|
- template: commercialpaper-java.yml
|
|
|
|
|