-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Use matrix to build docker images on buildkite #36409
Conversation
Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
manual branch run that shows that matrix works: https://buildkite.com/ray-project/oss-ci-build-branch/builds/4472#0188b872-125a-4f81-8834-938f09891b16 auto PR run does not show the matrix because it is (incorrectly) skipped. |
…ocker Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
@aslonnie can you resolve conflicts on this one? |
…ocker Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
done. |
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.
@@ -56,81 +56,32 @@ | |||
# - if [ "$BUILDKITE_BRANCH" == "master" ]; then python .buildkite/copy_files.py --destination wheels --path ./.whl; fi | |||
|
|||
|
|||
- label: ":mechanical_arm: :docker: Build Images: py37 [aarch64] (1/2)" | |||
- label: ":mechanical_arm: :docker: Build Images: {{matrix}} [aarch64] - cpu/cu115/cu116" |
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.
Should we convert the versions to matrices as well?
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.
what do you mean ? you mean cpu/cuda versions?
I think they are structured this way because the wheel building part is shared. it is shard-ed into 2 build steps only for slightly faster build time.
#36409 updated the job names but missed the cpu/cu115/cu116 image build job names, which now all show up as "py37". This PR fixes these names. Signed-off-by: Kai Fricke <kai@anyscale.com>
Signed-off-by: Lonnie Liu <lonnie@anyscale.com> Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
ray-project#36409 updated the job names but missed the cpu/cu115/cu116 image build job names, which now all show up as "py37". This PR fixes these names. Signed-off-by: Kai Fricke <kai@anyscale.com> Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
Avoid copy and pasting the same code on pipeline definitions.