Skip to content

Commit

Permalink
Rename integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkWanderer committed Mar 17, 2024
1 parent 288aeaa commit 40b5333
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cmake --preset linux-x64-debug
- run: cmake --build --preset linux-x64-debug --target integration
- run: out/build/linux-x64-debug/integration statsd+tcp://localhost:9125
- run: out/build/linux-x64-debug/integration statsd+udp://localhost:9125
- run: out/build/linux-x64-debug/integration pushgateway+http://localhost:9091/metrics/job/test_job/instance/test_instance
- run: cmake --build --preset linux-x64-debug --target integration-test
- run: out/build/linux-x64-debug/integration-test statsd+tcp://localhost:9125
- run: out/build/linux-x64-debug/integration-test statsd+udp://localhost:9125
- run: out/build/linux-x64-debug/integration-test pushgateway+http://localhost:9091/metrics/job/test_job/instance/test_instance
4 changes: 2 additions & 2 deletions integration/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
add_executable(integration integration.cpp)
target_link_libraries(integration PUBLIC METRICS::lib)
add_executable(integration-test integration.cpp)
target_link_libraries(integration-test PUBLIC METRICS::lib)

0 comments on commit 40b5333

Please sign in to comment.