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

Fix s2n-quic integ test #630

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions aws-lc-rs/scripts/run-s2n-quic-integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0 OR ISC

QUIC_AWS_LC_RS_STRING="^aws-lc-rs = { .* }"
S2N_QUIC_TEMP=$(mktemp -d)/s2n-quic

QUIC_AWS_LC_RS_STRING="^aws-lc-rs = .*"
QUIC_PATH_STRING="aws-lc-rs = { path = \"${PWD}\" }"

git clone https://github.com/aws/s2n-quic.git
cd s2n-quic
git clone https://github.com/aws/s2n-quic.git $S2N_QUIC_TEMP
cd $S2N_QUIC_TEMP

# replace instances of ring with our crate
if [[ "$(uname)" == "Darwin" ]]; then
Expand Down
Loading