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

Rename llvmdev manylinux #1149

Merged
merged 6 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/llvmdev_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
type: choice
options:
- llvmdev
- llvmdev_manylinux
- llvmdev_for_wheels

concurrency:
# Concurrency group that uses the workflow name and PR number if available
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/github/llvmdev_evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{
"runner": runner_mapping["win-64"],
"platform": "win-64",
"recipe": "llvmdev_manylinux",
"recipe": "llvmdev_for_wheel",
},
]

Expand Down
2 changes: 1 addition & 1 deletion buildscripts/manylinux/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# README: Building manylinux Wheels


## Build llvmdev packages for manylinux
## Build llvmdev conda packages for use during manylinux wheel building

Run the script below to start docker off building `llvmdev` base from the current state of the source tree:

Expand Down
2 changes: 1 addition & 1 deletion buildscripts/manylinux/build_llvmdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ source ./prepare_miniconda.sh $1
conda create -n buildenv -y conda conda-build
conda activate buildenv
conda list
conda-build /root/llvmlite/conda-recipes/llvmdev_manylinux --output-folder=/root/llvmlite/docker_output
conda-build /root/llvmlite/conda-recipes/llvmdev_for_wheel --output-folder=/root/llvmlite/docker_output
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is a copy of ../llvmdev/meta.yaml with minor changes for manylinux
# This file is a copy of ../llvmdev/meta.yaml with minor changes for wheel # building
{% set shortversion = "15.0" %}
{% set version = "15.0.7" %}
{% set sha256_llvm = "8b5fcb24b4128cf04df1b0b9410ce8b1a729cb3c544e6da885d234280dedeac6" %}
Expand Down
Loading