Skip to content

Commit

Permalink
Don't build cxxopt tests or examples
Browse files Browse the repository at this point in the history
  • Loading branch information
CJLove committed Sep 30, 2023
1 parent 01f249b commit 6788afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# Install cxxopts
curl -sSL https://github.com/jarro2783/cxxopts/archive/v3.1.1.tar.gz -o /tmp/cxxopts.tar.gz
tar zxf /tmp/cxxopts.tar.gz
pushd cxxopts-* && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make install && popd
pushd cxxopts-* && mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCXXOPTS_BUILD_EXAMPLES=OFF -DCXXOPTS_BUILD_TESTS=OFF .. && make install && popd
# Install toml11
curl -sSL https://github.com/ToruNiina/toml11/archive/v3.7.1.tar.gz -o /tmp/toml11.tar.gz
tar zxf /tmp/toml11.tar.gz
Expand Down

0 comments on commit 6788afa

Please sign in to comment.