Skip to content

Commit

Permalink
Actually build a version that we will release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Apr 10, 2024
1 parent dc464f0 commit 8bb511d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
13 changes: 5 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pipeline
git checkout $MLPACK_VERSION
# Temporary patch: increment build number.
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post1/g' src/mlpack/bindings/python/setup.py.in
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post2/g' src/mlpack/bindings/python/setup.py.in
rm -f src/mlpack/bindings/python/setup.py.in.bk
# Apply patches.
Expand Down Expand Up @@ -52,23 +52,20 @@ pipeline
axis
{
name 'PYTHON_VERSION'
// values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
// 'pp37', 'pp38', 'pp39'
values 'cp38', 'cp37'
values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
'pp37', 'pp38', 'pp39'
}

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

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

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines-macos-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
git checkout $(MLPACK_VERSION)
# Temporary patch to increment build number.
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post1/g' src/mlpack/bindings/python/setup.py.in
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post2/g' src/mlpack/bindings/python/setup.py.in
rm -f src/mlpack/bindings/python/setup.py.in.bk
# Apply patches to install Python headers and fix STB detection.
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines-windows-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ steps:
git checkout $(MLPACK_VERSION)
# Temporary patch to increment build number.
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post1/g' src/mlpack/bindings/python/setup.py.in
sed -i.bk 's/${PACKAGE_VERSION}/${PACKAGE_VERSION}.post2/g' src/mlpack/bindings/python/setup.py.in
rm -f src/mlpack/bindings/python/setup.py.in.bk
# Apply patches to install Python headers and fix STB detection.
Expand Down

0 comments on commit 8bb511d

Please sign in to comment.