forked from jmzkChain/jmzk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update boost version and add new builder buildspec
- Loading branch information
Showing
2 changed files
with
24 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
version: 0.2 | ||
|
||
env: | ||
parameter-store: | ||
LOGIN_USERID: "docker-userid" | ||
LOGIN_PASSWORD: "docker-password" | ||
BUILD_JOBS: "docker-build-jobs" | ||
|
||
phases: | ||
pre_build: | ||
commands: | ||
- echo Logging into Docker Hub... | ||
- docker login -u $LOGIN_USERID -p $LOGIN_PASSWORD | ||
build: | ||
commands: | ||
- echo Start building latest evt builder... | ||
- cd Docker/builder && docker build . -t everitoken/builder:latest --build-arg bjobs=$BUILD_JOBS | ||
post_build: | ||
commands: | ||
- echo Publish to Docker Hub... | ||
- docker push everitoken/builder:latest |