Skip to content

Commit

Permalink
Pass a path to cmake in order to avoid a warning.
Browse files Browse the repository at this point in the history
Change-Id: I998b80494102a67ce3e23d8b09deb15874a85fb7
Reviewed-on: https://code-review.googlesource.com/c/re2/+/58612
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
junyer committed May 19, 2021
1 parent ae1e294 commit c47b581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/cmake.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash
set -eux

cmake -D CMAKE_BUILD_TYPE=Debug
cmake . -D CMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug --clean-first
ctest -C Debug --output-on-failure -E 'dfa|exhaustive|random'

cmake -D CMAKE_BUILD_TYPE=Release
cmake . -D CMAKE_BUILD_TYPE=Release
cmake --build . --config Release --clean-first
ctest -C Release --output-on-failure -E 'dfa|exhaustive|random'

Expand Down

0 comments on commit c47b581

Please sign in to comment.