GitHub Actions: add cross-platform release and CI workflows#2
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds cross-platform release and CI workflows.
Changes Made
1. Cargo.toml
Added feature flags for different platform backends:
cuda- NVIDIA GPU supportmetal- Apple Silicon GPU supportaccelerate- Apple Intel CPU accelerationmkl- Intel CPU acceleration (MKL)Set
default-features = falseon candle crates to allow feature-based selection.2. .github/workflows/release.yml
New workflow for official releases.
Trigger: Push tags matching
v*(e.g.,v1.0.0)Jobs - Builds 6 platforms in parallel:
Release: Creates GitHub Release marked as
latest: true3. .github/workflows/ci.yml
New workflow for CI/build verification.
Trigger: Push to
mainbranchJobs: Same 6 platform builds as release
Artifacts: Uploaded with commit hash in filename (e.g.,
vecBox-abc1234-bin-linux-cpu-x86_64.tar.gz)4. .github/actions/get-tag-name/action.yml
Fixed versioning logic:
v1.0.0)v15)5. .github/actions/windows-setup-cuda/action.yml
bin/,lib/structure)libcublasLtdownloadInvoke-WebRequest(not curl alias)6. .github/actions/linux-setup-cuda/action.yml
New action for CUDA 12.4 installation on Ubuntu.
CUDA_PATHandLD_LIBRARY_PATH