Skip to content
Merged
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions .github/workflows/rust-spike.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,26 @@ on:
- ".github/workflows/rust-spike.yml"

jobs:
linux-arm64-build:
name: Linux ARM64 release build
runs-on: ubuntu-24.04-arm
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}

- name: Install rust toolchain (pinned by rust/rust-toolchain.toml)
run: rustup show

- uses: Swatinem/rust-cache@v2
with:
workspaces: rust

- name: Build shipped native binaries
working-directory: rust
run: cargo build --release --locked -p decided -p decided-mcp

windows-runtime:
name: Windows native runtime smoke
runs-on: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion rust/rac-engine/src/federation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ fn scan_yaml_events(yaml: &str) -> Result<RestrictedYamlScan, (Option<u64>, Stri
} else {
// SAFETY: libyaml exposes a NUL-terminated problem string while
// the parser is alive.
unsafe { CStr::from_ptr(parser.0.problem) }
unsafe { CStr::from_ptr(parser.0.problem.cast()) }
.to_string_lossy()
.into_owned()
};
Expand Down
Loading