mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 16:05:10 +00:00
17 lines
705 B
YAML
17 lines
705 B
YAML
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
steps:
|
|
- script: |
|
|
set -eo pipefail
|
|
wget -q -P /tmp https://hyperledger.jfrog.io/hyperledger/fabric-binaries/hyperledger-fabric-linux-amd64-latest.tar.gz
|
|
sudo tar xzvf /tmp/hyperledger-fabric-linux-amd64-latest.tar.gz -C /usr/local
|
|
displayName: Download Fabric CLI
|
|
- script: |
|
|
set -eo pipefail
|
|
wget -q -P /tmp https://hyperledger.jfrog.io/hyperledger/fabric-binaries/hyperledger-fabric-ca-linux-amd64-latest.tar.gz
|
|
sudo tar xzvf /tmp/hyperledger-fabric-ca-linux-amd64-latest.tar.gz -C /usr/local
|
|
displayName: Download Fabric CA CLI
|
|
- script: bash ci/getDockerImages.sh
|
|
displayName: Pull Fabric Docker images
|