Skip to content

Commit

Permalink
Per PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed May 8, 2024
1 parent 7921090 commit a939c8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/ci/run_cross_mingw_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ cat <<EOF > ${TARGET_CPU}-${TARGET_PLATFORM}.cmake
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_SYSTEM_PROCESSOR ${TARGET_CPU})
# Specify the cross-compiler
# Specify the cross-compiler
set(CMAKE_C_COMPILER /usr/bin/${TARGET_CPU}-${TARGET_PLATFORM}-gcc-${THREAD_MODEL})
set(CMAKE_CXX_COMPILER /usr/bin/${TARGET_CPU}-${TARGET_PLATFORM}-g++-${THREAD_MODEL})
Expand All @@ -53,8 +52,7 @@ set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
# Static to minimize runtime linking requirements
set(CMAKE_C_FLAGS --static)
set(CMAKE_CXX_FLAGS --static)
set(CMAKE_EXE_LINKER_FLAGS --static)
set(CMAKE_GENERATOR Ninja)
EOF
Expand All @@ -70,6 +68,7 @@ for BO in "${BUILD_OPTIONS[@]}"; do
shard_gtest ${BUILD_ROOT}/crypto/urandom_test.exe
shard_gtest ${BUILD_ROOT}/crypto/mem_test.exe
shard_gtest ${BUILD_ROOT}/crypto/mem_set_test.exe
shard_gtest ${BUILD_ROOT}/crypto/rwlock_static_init.exe

shard_gtest ${BUILD_ROOT}/ssl/ssl_test.exe
shard_gtest ${BUILD_ROOT}/ssl/integration_test.exe
Expand Down
1 change: 1 addition & 0 deletions tests/ci/run_cross_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ for BO in "${BUILD_OPTIONS[@]}"; do
shard_gtest ${BUILD_ROOT}/crypto/urandom_test
shard_gtest ${BUILD_ROOT}/crypto/mem_test
shard_gtest ${BUILD_ROOT}/crypto/mem_set_test
shard_gtest ${BUILD_ROOT}/crypto/rwlock_static_init

shard_gtest ${BUILD_ROOT}/ssl/ssl_test
shard_gtest ${BUILD_ROOT}/ssl/integration_test
Expand Down

0 comments on commit a939c8d

Please sign in to comment.