mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
This change organizes the `ci` directory into common-sense subfolders and standardizes pipelines naming schemes. Also removes the dead Jenkins code in the `./scripts` directory Signed-off-by: Brett Logan <brett.t.logan@ibm.com>
21 lines
490 B
YAML
21 lines
490 B
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
steps:
|
|
- script: ./startFabric.sh javascript
|
|
workingDirectory: fabcar
|
|
displayName: Start Fabric
|
|
- script: |
|
|
retry -- npm install
|
|
npm ls
|
|
workingDirectory: fabcar/javascript
|
|
displayName: Install FabCar Application Dependencies
|
|
- script: |
|
|
set -ex
|
|
node enrollAdmin
|
|
node registerUser
|
|
node invoke
|
|
node query
|
|
workingDirectory: fabcar/javascript
|
|
displayName: Run FabCar Application
|