-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Organize and Standardize
ci
Directory Content (#152)
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 <[email protected]>
- Loading branch information
Brett Logan
authored
Apr 6, 2020
1 parent
aa40963
commit c572c51
Showing
19 changed files
with
119 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash -e | ||
set -euo pipefail | ||
|
||
# FABRIC_VERSION is set in ci/azure-pipelines.yml | ||
STABLE_TAG=amd64-${FABRIC_VERSION}-stable | ||
|
||
for image in baseos peer orderer ca tools orderer ccenv javaenv nodeenv; do | ||
docker pull -q hyperledger-fabric.jfrog.io/fabric-${image}:${STABLE_TAG} | ||
docker tag hyperledger-fabric.jfrog.io/fabric-${image}:${STABLE_TAG} hyperledger/fabric-${image} | ||
docker tag hyperledger-fabric.jfrog.io/fabric-${image}:${STABLE_TAG} hyperledger/fabric-${image}:${FABRIC_VERSION} | ||
docker rmi -f hyperledger-fabric.jfrog.io/fabric-${image}:${STABLE_TAG} | ||
done | ||
|
||
docker pull -q hyperledger/fabric-couchdb | ||
docker images | grep hyperledger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.