From 6ccb7aad1c78130d031d374a4710ea9eb608ed85 Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Sun, 3 Nov 2024 21:33:04 +0100 Subject: [PATCH] do not build the C API on x86 OSX (#237) * do not build on x86 OSX * update readme * Apply suggestions from code review --- .github/workflows/release.yml | 5 +++-- biscuit-capi/README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df39d659..dd78af14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,8 +17,9 @@ jobs: strategy: matrix: include: - - os: macos-latest-large - target_arch: x86_64-apple-darwin + # deactivated for now, the x86 workers are more expensive + # - os: macos-latest-large + # target_arch: x86_64-apple-darwin - os: macos-latest target_arch: aarch64-apple-darwin - os: ubuntu-latest diff --git a/biscuit-capi/README.md b/biscuit-capi/README.md index 06035e66..70ae82b1 100644 --- a/biscuit-capi/README.md +++ b/biscuit-capi/README.md @@ -16,7 +16,7 @@ You can then link against the generated library in your C code. ### Downloading pre-built binaries In the [releases section](https://github.com/biscuit-auth/biscuit-rust/releases) of this repository, you can find pre-built binaries for the C API. -Currently, only Linux x86_64 and MacOS (x86 + arm) are provided. +Currently, only Linux x86_64 and MacOS (arm) are provided. ### Running the tests