20 lines
656 B
Bash
Executable File
20 lines
656 B
Bash
Executable File
#!/bin/bash -exu
|
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 OR ISC
|
|
|
|
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 $S2N_QUIC_TEMP
|
|
cd $S2N_QUIC_TEMP
|
|
|
|
# replace instances of ring with our crate
|
|
if [[ "$(uname)" == "Darwin" ]]; then
|
|
find ./ -type f -name "Cargo.toml" | xargs sed -i '' -e "s|${QUIC_AWS_LC_RS_STRING}|${QUIC_PATH_STRING}|"
|
|
else
|
|
find ./ -type f -name "Cargo.toml" | xargs sed -i -e "s|${QUIC_AWS_LC_RS_STRING}|${QUIC_PATH_STRING}|"
|
|
fi
|
|
cargo test
|