Skip to content

Commit 0d8312f

Browse files
authored
Merge pull request #168 from lindluni/version
Change FABRIC_VERSION to latest tag
2 parents 76c7fe4 + b51eac2 commit 0d8312f

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

ci/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ variables:
4040
- name: PUSH_VERSION
4141
value: stable
4242
- name: FABRIC_VERSION
43-
value: 2.1
43+
value: latest
4444

4545
pool:
4646
vmImage: "ubuntu-latest"

fabric-chaincode-integration-test/getDockerImages.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,14 @@
66
#
77
set -euo pipefail
88

9-
version=${FABRIC_VERSION:-2.3}
9+
version=${FABRIC_VERSION:-latest}
1010
artifactory_url=hyperledger-fabric.jfrog.io
1111

12-
for image in peer orderer tools; do
13-
artifactory_image="${artifactory_url}/fabric-${image}:amd64-${version}-stable"
12+
for image in peer orderer ca tools; do
13+
artifactory_image="${artifactory_url}/fabric-${image}:amd64-${version}"
1414
docker pull -q "${artifactory_image}"
1515
docker tag "${artifactory_image}" "hyperledger/fabric-${image}"
1616
docker rmi -f "${artifactory_image}" >/dev/null
1717
done
1818

1919
docker pull -q hyperledger/fabric-couchdb
20-
docker pull -q hyperledger/fabric-ca:1.4
21-
docker tag hyperledger/fabric-ca:1.4 hyperledger/fabric-ca
22-
docker rmi hyperledger/fabric-ca:1.4 >/dev/null

0 commit comments

Comments
 (0)