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
4 changes: 2 additions & 2 deletions .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
- name: build
run: nix develop . -c just build

- name: build-ffi-feature
run: nix develop . -c cargo check --locked --features ffi
- name: build-ffi-crate
run: nix develop . -c cargo check --locked -p integrity-ffi --features "blob-all,signer-all"

- name: build-wasm
run: nix develop . -c just build-wasm
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release-native-ffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ jobs:
- os: ubuntu-latest
label: linux x86_64
asset_suffix: linux-x86_64
lib_path: target/release/libintegrity.so
lib_name: libintegrity.so
lib_path: target/release/libintegrity_ffi.so
lib_name: libintegrity_ffi.so
import_lib_candidates: ""
- os: macos-14
label: macos 14 aarch64
asset_suffix: macos-14-aarch64
lib_path: target/release/libintegrity.dylib
lib_name: libintegrity.dylib
lib_path: target/release/libintegrity_ffi.dylib
lib_name: libintegrity_ffi.dylib
import_lib_candidates: ""
- os: macos-15-intel
label: macos 15 x86_64
asset_suffix: macos-15-x86_64
lib_path: target/release/libintegrity.dylib
lib_name: libintegrity.dylib
lib_path: target/release/libintegrity_ffi.dylib
lib_name: libintegrity_ffi.dylib
import_lib_candidates: ""
- os: macos-15
label: macos 15 aarch64
asset_suffix: macos-15-aarch64
lib_path: target/release/libintegrity.dylib
lib_name: libintegrity.dylib
lib_path: target/release/libintegrity_ffi.dylib
lib_name: libintegrity_ffi.dylib
import_lib_candidates: ""

steps:
Expand All @@ -69,7 +69,7 @@ jobs:
uses: eqtylab-actions/rust-cache@v2

- name: Build release cdylib
run: nix develop . -c cargo build --release --locked --features ffi
run: nix develop . -c cargo build --release --locked -p integrity-ffi --features "blob-all,signer-all"

- name: Stage artifact files
shell: bash
Expand All @@ -90,7 +90,7 @@ jobs:
done

cat > "${out_dir}/BUILD_INFO.txt" <<BUILD_INFO_EOF
crate=integrity
crate=integrity-ffi
git_ref=${GITHUB_REF}
git_sha=${GITHUB_SHA}
runner_os=${RUNNER_OS}
Expand Down
Loading