-
Notifications
You must be signed in to change notification settings - Fork 161
update: Update buildspec for TF 1.15.0 #265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
ec3ded4
to
b7bd984
Compare
@@ -14,11 +14,10 @@ | |||
|
|||
import unittest | |||
|
|||
from docker.build_artifacts import deep_learning_container as deep_learning_container_to_test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: this import should go after pytest and request because it's our library
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had to do this to comply with flake8 requirements.
I think module names need to be sorted in lexicographical order.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually think the reason this is happening is b/c flake8 recognizes "docker" as the docker python sdk, so it thinks this is a 3rd party lib instead of a local one. One possible workaround is to noqa this line for that particular flake8 rule.
update: Update buildspec for TF 1.15.0 (aws#265)
Revert "update: Update buildspec for TF 1.15.0 (aws#265)"
Revert "Revert "update: Update buildspec for TF 1.15.0 (aws#265)""
* update: Release TF 1.15.0 dockerfiles (#264) * Add TF 1.15 dockerfiles and changes to entrypoint Co-authored-by: akhilmehra <[email protected]> Co-authored-by: ElizaZh <[email protected]> Co-authored-by: Owen Thomas <[email protected]> Co-authored-by: Kartik Kalamadi <[email protected]> Co-authored-by: Arjuna Keshavan <[email protected]> Co-authored-by: akhilmehra <[email protected]> Co-authored-by: ElizaZh <[email protected]> Co-authored-by: Owen Thomas <[email protected]> Co-authored-by: Kartik Kalamadi <[email protected]> Co-authored-by: Arjuna Keshavan <[email protected]> * change: update copyright year in license header (#266) * update: Update buildspec for TF 1.15.0 (#265) * Change path for entrypoint script * Change path for deep learning container script * Change build context to folder containing dockerfiles * Update buildspec * Update buildspec-release * update: Update awscli version and remove related pins (#267) * Update awscli, remove dependent pins * Update setup.py package versions to latest * bump smdebug version to 0.5.0.post0 (#268) * bump smdebug to 0.5.0 * changed awscli to prevent botocore conflict * documentation: Add link to TF 2.0 branch (#269) * Add link to TF 2.0 branch * Add url for dockerfiles * Pin awscli to latest (#270) * pin awscli to latest version (#272) awscli==1.17.7 * infra: properly fail build if has-matching-changes fails (#273) * infra: properly fail build if has-matching-changes fails (#274) Co-authored-by: Sai Parthasarathy Miduthuri <[email protected]> Co-authored-by: akhilmehra <[email protected]> Co-authored-by: ElizaZh <[email protected]> Co-authored-by: Owen Thomas <[email protected]> Co-authored-by: Kartik Kalamadi <[email protected]> Co-authored-by: Arjuna Keshavan <[email protected]> Co-authored-by: Lauren Yu <[email protected]> Co-authored-by: Denis Davydenko <[email protected]>
Description of changes:
Build the latest TF version in buildspec, and use folder containing dockerfile as build context
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.