Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
687afd23
Unverified
Commit
687afd23
authored
3 months ago
by
Marc Mueller
Committed by
GitHub
3 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Add pip wheel build constraints to fix numpy builds (#133962)
parent
0020c48a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/wheels.yml
+29
-0
29 additions, 0 deletions
.github/workflows/wheels.yml
with
29 additions
and
0 deletions
.github/workflows/wheels.yml
+
29
−
0
View file @
687afd23
...
@@ -76,8 +76,20 @@ jobs:
...
@@ -76,8 +76,20 @@ jobs:
# Use C-Extension for SQLAlchemy
# Use C-Extension for SQLAlchemy
echo "REQUIRE_SQLALCHEMY_CEXT=1"
echo "REQUIRE_SQLALCHEMY_CEXT=1"
# Add additional pip wheel build constraints
echo "PIP_CONSTRAINT=build_constraints.txt"
) > .env_file
) > .env_file
-
name
:
Write pip wheel build constraints
run
:
|
(
# ninja 1.11.1.2 + 1.11.1.3 seem to be broken on at least armhf
# this caused the numpy builds to fail
# https://github.com/scikit-build/ninja-python-distributions/issues/274
echo "ninja==1.11.1.1"
) > build_constraints.txt
-
name
:
Upload env_file
-
name
:
Upload env_file
uses
:
actions/upload-artifact@v4.5.0
uses
:
actions/upload-artifact@v4.5.0
with
:
with
:
...
@@ -86,6 +98,13 @@ jobs:
...
@@ -86,6 +98,13 @@ jobs:
include-hidden-files
:
true
include-hidden-files
:
true
overwrite
:
true
overwrite
:
true
-
name
:
Upload build_constraints
uses
:
actions/upload-artifact@v4.5.0
with
:
name
:
build_constraints
path
:
./build_constraints.txt
overwrite
:
true
-
name
:
Upload requirements_diff
-
name
:
Upload requirements_diff
uses
:
actions/upload-artifact@v4.5.0
uses
:
actions/upload-artifact@v4.5.0
with
:
with
:
...
@@ -123,6 +142,11 @@ jobs:
...
@@ -123,6 +142,11 @@ jobs:
with
:
with
:
name
:
env_file
name
:
env_file
-
name
:
Download build_constraints
uses
:
actions/download-artifact@v4.1.8
with
:
name
:
build_constraints
-
name
:
Download requirements_diff
-
name
:
Download requirements_diff
uses
:
actions/download-artifact@v4.1.8
uses
:
actions/download-artifact@v4.1.8
with
:
with
:
...
@@ -167,6 +191,11 @@ jobs:
...
@@ -167,6 +191,11 @@ jobs:
with
:
with
:
name
:
env_file
name
:
env_file
-
name
:
Download build_constraints
uses
:
actions/download-artifact@v4.1.8
with
:
name
:
build_constraints
-
name
:
Download requirements_diff
-
name
:
Download requirements_diff
uses
:
actions/download-artifact@v4.1.8
uses
:
actions/download-artifact@v4.1.8
with
:
with
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment