ci: update release workflow and bump obikmer to 1.1.26

Replaces the macOS ARM64 cross-compilation container with a custom internal registry image. Adds explicit steps to install the `aarch64-apple-darwin` Rust target and `jq`, and updates the build command to use `--no-default-features`. Bumps the `obikmer` package version from 1.1.25 to 1.1.26.
This commit is contained in:
Eric Coissac
2026-06-24 15:54:01 +02:00
parent ca42fdff2f
commit 15db0370a6
3 changed files with 4 additions and 13 deletions
+2 -11
View File
@@ -86,18 +86,13 @@ jobs:
build-macos-arm64: build-macos-arm64:
needs: create-release needs: create-release
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: joseluisq/rust-linux-darwin-builder:latest container: registry.metabarcoding.org/cibuilder/rustcrossosx:latest
defaults: defaults:
run: run:
working-directory: src working-directory: src
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Add target and install jq
run: |
rustup target add aarch64-apple-darwin
apt-get update -qq && apt-get install -y -qq jq
- name: Cache cargo registry - name: Cache cargo registry
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
@@ -109,11 +104,7 @@ jobs:
restore-keys: macos-arm64-cargo- restore-keys: macos-arm64-cargo-
- name: Build macOS binary - name: Build macOS binary
env: run: cargo build --release --target aarch64-apple-darwin --no-default-features
CC: aarch64-apple-darwin22.4-clang
CXX: aarch64-apple-darwin22.4-clang++
CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER: aarch64-apple-darwin22.4-clang
run: cargo build --release --target aarch64-apple-darwin
- name: Prepare and upload artifact - name: Prepare and upload artifact
env: env:
+1 -1
View File
@@ -1704,7 +1704,7 @@ dependencies = [
[[package]] [[package]]
name = "obikmer" name = "obikmer"
version = "1.1.25" version = "1.1.26"
dependencies = [ dependencies = [
"clap", "clap",
"csv", "csv",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "obikmer" name = "obikmer"
version = "1.1.25" version = "1.1.26"
edition = "2024" edition = "2024"
[[bin]] [[bin]]