diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69c57da..6678e48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: # macOS - target: x86_64-apple-darwin - os: macos-10.15 + os: macos-13 fail-fast: false steps: diff --git a/src/query.rs b/src/query.rs index 56d8c26..86556d6 100644 --- a/src/query.rs +++ b/src/query.rs @@ -198,6 +198,7 @@ mod tests { } #[test] + #[cfg(not(target_os = "android"))] // TODO: Determine why this fails on Android in QEMU fn query_is_not_off_by_one() -> Result<()> { let pages = [Protection::READ, Protection::READ_EXECUTE, Protection::READ]; let map = alloc_pages(&pages);