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

feat(ci): Split Linux CI workflow and add container images pipeline #188

Conversation

adamcavendish
Copy link
Contributor

Added a new workflow, container_images.yml, to automate building and pushing CI container images to GitHub Container Registry, ensuring consistent environments for CI runs across Linux distributions.

Added a dedicated CI workflow for Linux to streamline testing across multiple CUDA and OS configurations. It reuses the images built from container_images.yml workflow to avoid installing CUDA toolkits every time to save time.

Key changes:

  • Matrix configurations for Ubuntu 22/24, RockyLinux 9 with CUDA 12.8.1
  • Dockerfiles updated with required dependencies (clang, CUDA toolchains, etc.) to support bindgen and build examples.
  • Removed redundant CI steps from rust.yml now handled in ci_linux.yml

Resolves #185.

Please note that I have disabled push on pull_request events so we need to manually trigger once before we can have a successful Linux CI run.

@adamcavendish adamcavendish force-pushed the feature/github-action-use-container branch from 7f8db93 to c59990b Compare April 3, 2025 11:51
@adamcavendish
Copy link
Contributor Author

adamcavendish commented Apr 3, 2025

@LegNeato As mentioned in the description, would you help trigger the Build CI Container Images workflow manually so the CI can correctly use these images?

Reference triggers in my forked repo: https://github.com/adamcavendish/Rust-CUDA/actions/workflows/container_images.yml

cc @jorge-ortega since it'll conflict his changes as well.

@adamcavendish adamcavendish force-pushed the feature/github-action-use-container branch from c59990b to b4cf2d2 Compare April 3, 2025 11:59
Added a new workflow, container_images.yml, to automate building and
pushing CI container images to GitHub Container Registry, ensuring
consistent environments for CI runs across Linux distributions.

Added a dedicated CI workflow for Linux to streamline testing across
multiple CUDA and OS configurations. It reuses the images built from
container_images.yml workflow to avoid installing CUDA toolkits every
time to save time.

Key changes:
- Matrix configurations for Ubuntu 22/24, RockyLinux 9 with CUDA 12.8.1
- Dockerfiles updated with required dependencies (clang, CUDA
  toolchains, etc.) to support bindgen and build examples.
- Removed redundant CI steps from `rust.yml` now handled in
  `ci_linux.yml`
@jorge-ortega jorge-ortega force-pushed the feature/github-action-use-container branch from b4cf2d2 to f93e216 Compare April 3, 2025 23:35
@jorge-ortega
Copy link
Collaborator

I think there is a permission issue because the branch is from a fork. I'm going to duplicate the branch on the main repo which should kick off the container imagine builds with the right permissions.

@jorge-ortega
Copy link
Collaborator

That seemed to do the trick. Going to merge and rebase the bindgen changes. Thanks @adamcavendish!

@jorge-ortega jorge-ortega merged commit 9856aad into Rust-GPU:main Apr 4, 2025
9 of 19 checks passed
@adamcavendish
Copy link
Contributor Author

I think there is a permission issue because the branch is from a fork. I'm going to duplicate the branch on the main repo which should kick off the container imagine builds with the right permissions.

Yeah, that's why I posted a link showing that my own actions are working correctly so you guys will be confident to take it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Speed up installing CUDA on CI Switch CI to use containers
2 participants