-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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: Provide prebuilt windows binary for hip #9467
Conversation
no1wudi
commented
Sep 13, 2024
- I have read the contributing guidelines
- Self-reported review complexity:
- Low
- Medium
- High
To reduce the time needed for the CI to complete, can you change this so that during pull requests, only one gpu_target is built? |
OK, how about only build one target for CI and only build all targets on release? |
Yes that would be good, building all targets for the releases is fine, it's only not necessary for pull requests. |
97621c0
to
33639e5
Compare
.github/workflows/build.yml
Outdated
cmake --build build -j ${env:NUMBER_OF_PROCESSORS} | ||
|
||
windows-latest-cmake-hip-release: | ||
if: ${{ github.event.inputs.create_release == 'true' }} |
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 think this is not going to be enough to create releases automatically on every commit to master, it also needs to check for github.event_name == 'push' && github.ref == 'refs/heads/master'
like in the other jobs.