Skip to content

Commit b51eac2

Browse files
committed
Change FABRIC_VERSION to latest tag
CI for the default branch should always pull the latest image now that its available. Signed-off-by: Brett Logan <[email protected]>
1 parent 6200fb4 commit b51eac2

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
@@ -41,7 +41,7 @@ variables:
4141
- name: PUSH_VERSION
4242
value: stable
4343
- name: FABRIC_VERSION
44-
value: 2.1
44+
value: latest
4545

4646
pool:
4747
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)