Skip to content

Commit

Permalink
[Geneva] Fix parallel job count for geneva_metrics CI (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan authored Apr 2, 2024
1 parent f99bdc1 commit 897c9ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/geneva_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
mkdir -p "$GITHUB_WORKSPACE/otel_cpp/build"
cd "$GITHUB_WORKSPACE/otel_cpp/build"
cmake .. -DOPENTELEMETRY_INSTALL=ON
cmake --build . -j${nproc}
cmake --build . -j$(nproc)
cmake --install . --prefix "$HOME/prebuilt-otel"
mkdir -p "$GITHUB_WORKSPACE/otel_cpp_contrib/exporters/geneva/build"
cd "$GITHUB_WORKSPACE/otel_cpp_contrib/exporters/geneva/build"
cmake .. "-DCMAKE_PREFIX_PATH=$HOME/prebuilt-otel" \
-DBUILD_TESTING=ON -DBUILD_EXAMPLE=ON
cmake --build . -j${nproc}
cmake --build . -j$(nproc)
ctest

0 comments on commit 897c9ef

Please sign in to comment.