Skip to content

Commit

Permalink
Merge branch 'main' of github.com:OpenMined/TenSEAL into main
Browse files Browse the repository at this point in the history
  • Loading branch information
bcebere committed Apr 12, 2022
2 parents 7895cff + 136981a commit ce399df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/bazel_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
pull_request:
types: [opened, synchronize, reopened]


jobs:
BAZEL:
runs-on: ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scripts/install_req_centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
yum makecache -y
yum install centos-release-scl -y
yum-config-manager --enable rhel-server-rhscl-7-rpms
yum install llvm-toolset-7.0 python3 python-devel -y
yum install llvm-toolset-7.0 python3 python3-devel -y
scl enable llvm-toolset-7.0 bash
export CC=/opt/rh/llvm-toolset-7.0/root/usr/bin/clang
export CPP=/opt/rh/llvm-toolset-7.0/root/usr/bin/clang-cpp
Expand All @@ -17,5 +17,5 @@ clang --version


# install python dependencies
python -m pip install --upgrade pip
pip install setuptools wheel twine auditwheel
python3 -m pip install --upgrade pip
python3 -m pip install setuptools wheel twine auditwheel
2 changes: 1 addition & 1 deletion .github/workflows/scripts/release_centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ export CXX=/opt/rh/llvm-toolset-7.0/root/usr/bin/clang++
export PATH=/opt/rh/llvm-toolset-7.0/root/usr/bin:/opt/rh/llvm-toolset-7.0/root/usr/sbin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/opt/rh/llvm-toolset-7.0/root/usr/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}

pip wheel . -w dist/ --no-deps
python3 -m pip wheel . -w dist/ --no-deps
auditwheel repair dist/*.whl --plat $AUDITWHEEL_PLAT
twine upload --skip-existing wheelhouse/*

0 comments on commit ce399df

Please sign in to comment.