Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
# Rust
- name: Set up Rust
id: toolchain
uses: dtolnay/rust-toolchain@stable
# Pin to 1.79.0: aw-server-rust@dc70318 uses `time` crate which fails to compile
# on Rust 1.80+ due to tightened type inference (E0282 in Box<_> expressions).
uses: dtolnay/rust-toolchain@1.79.0
Comment on lines +57 to +59
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 No tracking issue for the unpin

The comment explains the temporary nature of this pin, but without a linked GitHub issue the team may forget to revisit it when aw-server-rust updates its time dependency. Consider adding a TODO(#<issue>): reference so the pin stays on the radar and is easy to find later.

if: steps.cache-jniLibs.outputs.cache-hit != 'true'

- name: Set up Rust toolchain for Android NDK
Expand Down
Loading