Skip to content

Commit

Permalink
cmake proto
Browse files Browse the repository at this point in the history
  • Loading branch information
friend0 committed Dec 15, 2024
1 parent d8531fe commit 93eac00
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,24 @@ jobs:
libxcb-xfixes0-dev \
libxkbcommon-dev \
patchelf \
libudev-dev
libudev-dev \
cmake \
protobuf-compiler
- name: Install Protobuf and CMake on macOS
if: runner.os == 'macos-latest'
run: |
brew install cmake protobuf
protoc --version
cmake --version
- name: Install Protobuf on Windows
if: runner.os == 'windows-latest'
run: |
choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"'
choco install protoc
protoc --version
cmake --version
- name: Build
run: cargo build --verbose
Expand Down

0 comments on commit 93eac00

Please sign in to comment.