-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request EOSIO#6363 from EOSIO/release/1.4.x
Release 1.4.4
- Loading branch information
Showing
16 changed files
with
445 additions
and
98 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
steps: | ||
- command: | | ||
echo "AUTHENTICATING GOOGLE SERVICE ACCOUNT" && \ | ||
gcloud --quiet auth activate-service-account [email protected] --key-file=/etc/gcp-service-account.json && \ | ||
docker-credential-gcr configure-docker && \ | ||
echo "BUILDING BUILD IMAGE" && \ | ||
cd Docker/builder && \ | ||
docker build -t eosio/builder:latest -t eosio/builder:$BUILDKITE_COMMIT . --build-arg branch=$BUILDKITE_COMMIT && \ | ||
docker tag eosio/builder:$BUILDKITE_COMMIT gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT && \ | ||
docker tag eosio/builder:latest gcr.io/b1-automation-dev/eosio/builder:latest && \ | ||
echo "PUSHING DOCKER IMAGES" && \ | ||
docker push gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT && \ | ||
docker push gcr.io/b1-automation-dev/eosio/builder:latest && \ | ||
echo "TRASHING OLD IMAGES" && \ | ||
docker rmi eosio/builder:$BUILDKITE_COMMIT && \ | ||
docker rmi eosio/builder:latest && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/builder:latest | ||
label: "Docker build builder" | ||
agents: | ||
queue: "automation-docker-builder-fleet" | ||
timeout: 300 | ||
- wait | ||
|
||
- command: | | ||
echo "AUTHENTICATING GOOGLE SERVICE ACCOUNT" && \ | ||
gcloud --quiet auth activate-service-account [email protected] --key-file=/etc/gcp-service-account.json && \ | ||
docker-credential-gcr configure-docker && \ | ||
echo "BUILDING EOS IMAGE" && \ | ||
docker pull gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT && \ | ||
cd Docker && \ | ||
docker build -t eosio/eos:latest -t eosio/eos:$BUILDKITE_COMMIT . --build-arg branch=$BUILDKITE_BRANCH && \ | ||
docker tag eosio/eos:$BUILDKITE_COMMIT gcr.io/b1-automation-dev/eosio/eos:$BUILDKITE_COMMIT && \ | ||
docker tag eosio/eos:latest gcr.io/b1-automation-dev/eosio/eos:latest && \ | ||
echo "PUSHING DOCKER IMAGES" && \ | ||
docker push gcr.io/b1-automation-dev/eosio/eos:$BUILDKITE_COMMIT && \ | ||
docker push gcr.io/b1-automation-dev/eosio/eos:latest && \ | ||
echo "TRASHING OLD IMAGES" && \ | ||
docker rmi eosio/eos:$BUILDKITE_COMMIT && \ | ||
docker rmi eosio/eos:latest && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/eos:$BUILDKITE_COMMIT && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/eos:latest && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT | ||
label: "Docker build eos" | ||
agents: | ||
queue: "automation-docker-builder-fleet" | ||
timeout: 300 | ||
- command: | | ||
echo "AUTHENTICATING GOOGLE SERVICE ACCOUNT" && \ | ||
gcloud --quiet auth activate-service-account [email protected] --key-file=/etc/gcp-service-account.json && \ | ||
docker-credential-gcr configure-docker && \ | ||
echo "BUILDING EOS DEV IMAGE" && \ | ||
docker pull gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT && \ | ||
cd Docker/dev && \ | ||
docker build -t eosio/eos-dev:latest -t eosio/eos-dev:$BUILDKITE_COMMIT . --build-arg branch=$BUILDKITE_BRANCH && \ | ||
docker tag eosio/eos-dev:$BUILDKITE_COMMIT gcr.io/b1-automation-dev/eosio/eos-dev:$BUILDKITE_COMMIT && \ | ||
docker tag eosio/eos-dev:latest gcr.io/b1-automation-dev/eosio/eos-dev:latest && \ | ||
echo "PUSHING DOCKER IMAGES" && \ | ||
docker push gcr.io/b1-automation-dev/eosio/eos-dev:$BUILDKITE_COMMIT && \ | ||
docker push gcr.io/b1-automation-dev/eosio/eos-dev:latest && \ | ||
echo "TRASHING OLD IMAGES" && \ | ||
docker rmi eosio/eos-dev:$BUILDKITE_COMMIT && \ | ||
docker rmi eosio/eos-dev:latest && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/eos-dev:$BUILDKITE_COMMIT && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/eos-dev:latest && \ | ||
docker rmi gcr.io/b1-automation-dev/eosio/builder:$BUILDKITE_COMMIT | ||
label: "Docker build eos-dev" | ||
agents: | ||
queue: "automation-docker-builder-fleet" | ||
timeout: 300 | ||
- wait |
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.