fabric-samples/ci/install-fabric.yml
Brett Logan a2ad59b396 [FABCI-482] Update Nexus URL's to Artifactory
Signed-off-by: Brett Logan <brett.t.logan@ibm.com>
2020-01-15 09:58:59 -05:00

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