Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
j-lanson committed Aug 12, 2024
1 parent 7860622 commit 48e265e
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/hipcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,19 @@ jobs:
with:
key: ${{ matrix.os }}
- name: Install protoc dependency
- if: runner.os == 'MacOS'
run: sudo brew install protobuf
- if: runner.os == 'Linux'
run: sudo apt-get install -y protobuf-compiler
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install -y protobuf-compiler
elif [ "$RUNNER_OS" == "MacOS" ]; then
sudo brew install protobuf
else
echo "$RUNNER_OS not supported"
exit 1
fi
# - if: runner.os == 'MacOS'
# run: sudo brew install protobuf
# - if: runner.os == 'Linux'
# run: sudo apt-get install -y protobuf-compiler
- name: Dependency Tree
run: cargo tree
- name: Build
Expand Down

0 comments on commit 48e265e

Please sign in to comment.