Skip to content

Commit

Permalink
Disable head builds for kTLS
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch committed Jul 25, 2024
1 parent 9a89a36 commit dc8228f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nix/shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ libcrypto_alias libressl "${LIBRESSL_INSTALL_DIR}/bin/openssl"

function clean {
banner "Cleanup ./build"
rm -rf ./build
rm -rf ./build ./s2n_head
}

function configure {
Expand All @@ -48,7 +48,9 @@ function build {
javac tests/integrationv2/bin/SSLSocketClient.java
cmake --build ./build -j $(nproc)
# Build s2n from HEAD
$SRC_ROOT/codebuild/bin/install_s2n_head.sh $(mktemp -d)
if [[ -z "${S2N_KTLS_TESTING_EXPECTED}" ]]; then
$SRC_ROOT/codebuild/bin/install_s2n_head.sh $(mktemp -d)
fi
}

function unit {
Expand Down

0 comments on commit dc8228f

Please sign in to comment.