Skip to content

Commit

Permalink
Attempt 1: fix x86_64 manylinux builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Dec 21, 2023
1 parent a558d4f commit ae603ee
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,21 @@ pipeline
axis
{
name 'PYTHON_VERSION'
values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
'pp37', 'pp38', 'pp39'
// values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
// 'pp37', 'pp38', 'pp39'
values 'cp312', 'cp39', 'cp37', 'cp36'
}

axis
{
name 'ARCH'
values 'x86_64', 'i686', 'aarch64', 's390x', 'ppc64le'
values 'x86_64' //, 'i686', 'aarch64', 's390x', 'ppc64le'
}

axis
{
name 'PYTHON_IMAGE'
values 'manylinux', 'musllinux'
values 'manylinux' //, 'musllinux'
}
}

Expand Down

0 comments on commit ae603ee

Please sign in to comment.