Skip to content

Commit

Permalink
ci: buildspec for qemu ktls test
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch committed Aug 29, 2023
1 parent 5d5400a commit 158d2fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
17 changes: 17 additions & 0 deletions codebuild/spec/buildspec_ktls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
version: 0.2
phases:
install:
commands:
- apt update
- apt upgrade -y
- apt install -y qemu qemu-system-x86 wget cloud-image-utils
pre_build:
commands:
- aws s3 --quiet sync s3://s2n-ktls-testing ./qemu
- cd qemu; bash ./run.sh; cd ..
- rsync -avz --exclude=qemu --exclude=tests/fuzz -e 'ssh -p 2222' . codebuild@localhost:/home/codebuild/s2n-tls
build:
commands:
- codebuild-breakpoint
- ssh -p 2222 codebuild@localhost "cd s2n-tls; sudo modprobe tls; nix develop .#openssl111 --command bash -c 'source ./nix/shell.sh && clean && configure 1 && build && unit inet_socket_test'"
2 changes: 2 additions & 0 deletions nix/shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ function clean {
}

function configure {
local pq=${1:-0}
banner "Configuring with cmake"
cmake -S . -B./build \
-DBUILD_TESTING=ON \
-DS2N_INTEG_TESTS=ON \
-DS2N_INSTALL_S2NC_S2ND=ON \
-DS2N_INTEG_NIX=ON \
-DS2N_NO_PQ=$pq \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=RelWithDebInfo
}
Expand Down

0 comments on commit 158d2fc

Please sign in to comment.