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

backport main branch CI to 39.0.x #8153

Merged
merged 7 commits into from Jan 29, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
35 changes: 0 additions & 35 deletions .circleci/build-wheel.sh

This file was deleted.

112 changes: 0 additions & 112 deletions .circleci/config.yml

This file was deleted.

13 changes: 5 additions & 8 deletions .github/workflows/build_openssl.sh
Expand Up @@ -68,15 +68,12 @@ elif [[ "${TYPE}" == "boringssl" ]]; then
git checkout "${VERSION}"
mkdir build
pushd build
cmake .. -DCMAKE_POSITION_INDEPENDENT_CODE=ON
# Find the default rust target based on what rustc is built for
cmake .. -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DRUST_BINDINGS="$(rustc -V --verbose | grep 'host: ' | sed 's/host: //')" -DCMAKE_INSTALL_PREFIX="${OSSL_PATH}"
make -j"$(nproc)"
mkdir -p "${OSSL_PATH}/lib/"
mkdir -p "${OSSL_PATH}/include/"
mkdir -p "${OSSL_PATH}/bin/"
cp -r ../include/openssl "${OSSL_PATH}/include/"
cp ssl/libssl.a "${OSSL_PATH}/lib/"
cp crypto/libcrypto.a "${OSSL_PATH}/lib/"
cp tool/bssl "${OSSL_PATH}/bin/openssl"
make install
# BoringSSL doesn't have a bin/openssl and we use that to detect success
touch "${OSSL_PATH}/bin/openssl"
popd
popd
fi