Skip to content
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

[CI] Setup buildkite #373

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
steps:
- label: "Julia v1.10"
plugins:
- JuliaCI/julia#v1:
version: "1.10"
- JuliaCI/julia-test#v1: ~/lib/MadNLPGPU
amontoison marked this conversation as resolved.
Show resolved Hide resolved
agents:
queue: "juliagpu"
cuda: "*"
Copy link
Member

@sshin23 sshin23 Nov 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't need nvidia GPUs for MadNLP testing (only needed for MadNLPGPU). Wouldn't this be waste of resources?

Copy link
Member Author

@amontoison amontoison Nov 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a waste of ressources but I don't know in which subpackages you are using GPU or not.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We only need it for testing MadNLPGPU

amontoison marked this conversation as resolved.
Show resolved Hide resolved
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60

- label: "Julia v1.11"
plugins:
- JuliaCI/julia#v1:
version: "1.11"
- JuliaCI/julia-test#v1: ~
agents:
queue: "juliagpu"
cuda: "*"
if: build.message !~ /\[skip tests\]/
timeout_in_minutes: 60
Loading