Skip to content

Commit

Permalink
workflows: add pluggable transport bootstrap test to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Pospesel committed Jun 23, 2024
1 parent 885bd25 commit 73eaa67
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- tor_interface_legacy_authenticated_onion_service_cargo_test
- tor_interface_legacy_bootstrap_cargo_test
- tor_interface_legacy_onion_service_cargo_test
- tor_interface_legacy_pluggable_transport_bootstrap_cargo_test
- tor_interface_mixed_arti_client_legacy_bootstrap_cargo_test
- tor_interface_mixed_legacy_arti_client_bootstrap_cargo_test
- tor_interface_mock_authenticated_onion_service_cargo_test
Expand All @@ -40,7 +41,7 @@ jobs:
- name: Test
run: |
mkdir build
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON -DENABLE_TOR_EXPERT_BUNDLE=ON
cd build
ctest --verbose -R ^${{matrix.test}}
windows:
Expand All @@ -55,6 +56,7 @@ jobs:
- tor_interface_legacy_authenticated_onion_service_cargo_test
- tor_interface_legacy_bootstrap_cargo_test
- tor_interface_legacy_onion_service_cargo_test
- tor_interface_legacy_pluggable_transport_bootstrap_cargo_test
- tor_interface_mixed_arti_client_legacy_bootstrap_cargo_test
- tor_interface_mixed_legacy_arti_client_bootstrap_cargo_test
- tor_interface_mock_authenticated_onion_service_cargo_test
Expand Down Expand Up @@ -94,7 +96,7 @@ jobs:
CC: clang
run: |
mkdir build
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON -DENABLE_TOR_EXPERT_BUNDLE=ON
cd build
ctest --verbose -R ^${{matrix.test}}
macos:
Expand All @@ -109,6 +111,7 @@ jobs:
- tor_interface_legacy_authenticated_onion_service_cargo_test
- tor_interface_legacy_bootstrap_cargo_test
- tor_interface_legacy_onion_service_cargo_test
- tor_interface_legacy_pluggable_transport_bootstrap_cargo_test
- tor_interface_mixed_arti_client_legacy_bootstrap_cargo_test
- tor_interface_mixed_legacy_arti_client_bootstrap_cargo_test
- tor_interface_mock_authenticated_onion_service_cargo_test
Expand All @@ -133,6 +136,6 @@ jobs:
- name: Test
run: |
mkdir build
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON
cmake -G "Unix Makefiles" -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -DENABLE_ARTI_CLIENT_TOR_PROVIDER=ON -DENABLE_TOR_EXPERT_BUNDLE=ON
cd build
ctest --verbose -R ^${{matrix.test}}

0 comments on commit 73eaa67

Please sign in to comment.