Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
bitsandbytes
Commits
4011273a
Commit
4011273a
authored
May 16, 2025
by
Titus von Koeller
Browse files
continuous release: tweaks
parent
66c0c454
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
.github/workflows/python-package.yml
.github/workflows/python-package.yml
+12
-1
No files found.
.github/workflows/python-package.yml
View file @
4011273a
...
...
@@ -219,7 +219,7 @@ jobs:
-
name
:
Generate pip install commands for release body
run
:
|
cat > body.md << 'ENDOFMARKDOWN'
## Latest `main`
Wheel P
re-release
## Latest `main`
p
re-release
wheel
This pre-release contains the latest development wheels for all supported platforms, rebuilt automatically on every commit to the `main` branch.
...
...
@@ -231,6 +231,17 @@ jobs:
for whl in wheels/*.whl; do
fname=$(basename "$whl")
url="https://github.com/bitsandbytes-foundation/bitsandbytes/releases/download/continuous-release_main/$fname"
if [[ "$fname" == *"manylinux_2_24_x86_64"* ]]; then
echo "### Linux (x86_64)" >> body.md
elif [[ "$fname" == *"manylinux_2_24_aarch64"* ]]; then
echo "### Linux (ARM/aarch64)" >> body.md
elif [[ "$fname" == *"win_amd64"* ]]; then
echo "### Windows (x86_64)" >> body.md
else
echo "### Other platform" >> body.md
fi
echo "\`\`\`sh" >> body.md
echo "pip install $url" >> body.md
echo "\`\`\`" >> body.md
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment