Skip to content

Commit

Permalink
why is it not working
Browse files Browse the repository at this point in the history
  • Loading branch information
The-personified-devil committed Dec 6, 2024
1 parent a5b098f commit ce7d5ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-linux-android
Expand Down Expand Up @@ -144,8 +146,8 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2

# # Fix actions rust install and msrv both being stupid
# - run: rustup update
# Fix actions rust install and msrv both being stupid
- run: rustup update

- name: Prepare deps
env:
Expand Down
3 changes: 3 additions & 0 deletions alvr/xtask/src/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,14 @@ pub fn clippy_ci() {
for message in stream.filter_map(|msg| {
let msg = msg.unwrap();

println!("{:?}", json::to_string_pretty(&msg.clone()));

if msg.get("reason")? == "compiler-message" {
msg.get("message").map(|x| x.to_owned())
} else {
None
}

}) {
let msg: CompilerMessage = json::from_value(message).unwrap();

Expand Down

0 comments on commit ce7d5ac

Please sign in to comment.