Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -255,14 +255,14 @@ jobs:
if: runner.os != 'Windows'
env:
RUSTLS_PLATFORM_VERIFIER: 1
run: ./build/tests/client example.com 443 / 1
run: ./build/tests/client cloudflare.com 443 / 1
# Run the rustls-ffi-test binary.
# On Windows it's in a different output location under build.
- name: Run rustls-ffi client (Windows)
if: runner.os == 'Windows'
env:
RUSTLS_PLATFORM_VERIFIER: 1
run: .\build\tests\Release\client.exe example.com 443 / 1
run: .\build\tests\Release\client.exe cloudflare.com 443 / 1

test-deb:
name: "Test Linux Deb (${{ matrix.os }})"
Expand Down Expand Up @@ -299,4 +299,4 @@ jobs:
- name: Run rustls-ffi client
env:
RUSTLS_PLATFORM_VERIFIER: 1
run: ./build/tests/client example.com 443 / 1
run: ./build/tests/client cloudflare.com 443 / 1
2 changes: 1 addition & 1 deletion librustls/cmake/rust.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ add_custom_command(
POST_BUILD
COMMAND
${CMAKE_COMMAND} -E env RUSTLS_PLATFORM_VERIFIER=1
"$<TARGET_FILE:client>" example.com 443 /
"$<TARGET_FILE:client>" cloudflare.com 443 /
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
)

Expand Down
Loading