Skip to content

Commit

Permalink
.github/workflows/rust.yml: install w/root
Browse files Browse the repository at this point in the history
  • Loading branch information
poshcoe committed Mar 29, 2024
1 parent f57d33f commit 9a35ff7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
run: sudo apt install -y protobuf-compiler
- name: Run Clippy Native
run: cargo clippy
- name: Run Clippy WASM just-webrtc
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
run: sudo apt install -y protobuf-compiler
- name: Build
run: cargo build
- name: Build WASM just-webrtc
Expand All @@ -64,7 +64,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
run: sudo apt install -y protobuf-compiler
- name: Run tests Native
run: cargo test
- name: Install wasm-pack
Expand Down

0 comments on commit 9a35ff7

Please sign in to comment.