Skip to content

Commit

Permalink
Fix github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BewareMyPower committed Feb 2, 2023
1 parent a8186db commit 7122b07
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci-pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: true
matrix:
os: [ubuntu-20.04, macos-12]

Expand All @@ -43,13 +42,13 @@ jobs:
uses: actions/checkout@v3

- name: Install deps (Ubuntu)
if: ${{ startsWith(${{ matrix.os }}, 'ubuntu') == 'true' }}
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get update -y
sudo apt-get install -y protobuf-compiler libprotobuf-dev wireshark-dev
- name: Install deps (macOS)
if: ${{ startsWith(${{ matrix.os }}, 'macos') == 'true' }}
if: ${{ startsWith(matrix.os, 'macos') }}
run:
brew install wireshark protobuf

Expand Down

0 comments on commit 7122b07

Please sign in to comment.