Skip to content

Commit d2e3897

Browse files
committed
m
1 parent 57aac9f commit d2e3897

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/osx.yml

-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ jobs:
106106
cd build-aws-encryption-sdk-c
107107
cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install -DCMAKE_PREFIX_PATH=${{github.workspace}}/install -DOPENSSL_ROOT_DIR="/usr/local/opt/${OPENSSL_VERSION}" ../
108108
make
109-
ctest3 -VV || true
110-
ctest -VV || true
111109
make test
112110
make install
113111

tests/TestVectors/Makefile

+8-4
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ test_vectors: *.cpp *.h
1111
install_name_tool -add_rpath ../../install/lib/ test_vectors
1212

1313
test_vectors_unix: *.cpp *.h
14-
g++ -g -ggdb --std=c++17 -o test_vectors -I../../include/ *.cpp \
15-
-I/opt/homebrew/include/ -L/opt/homebrew/lib/ \
14+
pwd
15+
ls ../..
16+
ls ../../install
17+
ls ../../install/lib/
18+
g++ -g -ggdb --std=c++17 -o test_vectors -I../../include/ \
19+
base64.cpp do_decrypt.cpp do_encrypt.cpp parse_encrypt.cpp parse_keys.cpp test_vectors.cpp \
1620
-I../../install/include/ -L../../install/lib/ -I ../../aws-encryption-sdk-cpp/include/ \
17-
../../build-aws-encryption-sdk-c/Debug/libaws-encryption-sdk.dylib \
18-
../../build-aws-encryption-sdk-c/aws-encryption-sdk-cpp/Debug/libaws-encryption-sdk-cpp.dylib \
21+
-laws-encryption-sdk -laws-encryption-sdk-cpp \
22+
-laws-cpp-sdk-core -laws-cpp-sdk-kms -laws-c-common -lcrypto
1923

2024
decrypt_dafny: test_vectors
2125
./test_vectors decrypt --manifest-path ./from-dafny --manifest-name decrypt-manifest.json || exit 1

0 commit comments

Comments
 (0)