NickelEval.jl

Julia FFI bindings for Nickel configuration language
Log | Files | Refs | README | LICENSE

commit 1028d83470cd2478b036c944e967ed701f98d173
parent aabb74fa8742ee15333e565f44e7b516a956afd8
Author: Erik Loualiche <[email protected]>
Date:   Fri,  6 Feb 2026 22:52:46 -0600

Fix build-ffi workflow: correct action name and runners

Co-Authored-By: Claude Opus 4.5 <[email protected]>

Diffstat:
M.github/workflows/build-ffi.yml | 11++++-------
1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/build-ffi.yml b/.github/workflows/build-ffi.yml @@ -9,21 +9,18 @@ on: jobs: build: strategy: + fail-fast: false matrix: include: - os: ubuntu-latest target: x86_64-unknown-linux-gnu artifact: libnickel_jl.so artifact_name: libnickel_jl-x86_64-linux-gnu.tar.gz - - os: ubuntu-24.04-arm - target: aarch64-unknown-linux-gnu - artifact: libnickel_jl.so - artifact_name: libnickel_jl-aarch64-linux-gnu.tar.gz - - os: macos-13 + - os: macos-14 target: x86_64-apple-darwin artifact: libnickel_jl.dylib artifact_name: libnickel_jl-x86_64-apple-darwin.tar.gz - - os: macos-latest + - os: macos-14 target: aarch64-apple-darwin artifact: libnickel_jl.dylib artifact_name: libnickel_jl-aarch64-apple-darwin.tar.gz @@ -38,7 +35,7 @@ jobs: - uses: actions/checkout@v4 - name: Install Rust - uses: dtolnay/rust-action@stable + uses: dtolnay/rust-toolchain@stable with: targets: ${{ matrix.target }}