From c517b981b468661c204b7a7732e75351e9131e8e Mon Sep 17 00:00:00 2001
From: pablo
Date: Wed, 25 Feb 2026 08:07:17 +0200
Subject: [PATCH] fix: wrong extension for mac
---
.github/workflows/ci.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 26d536f..ad18fb3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -72,5 +72,10 @@ jobs:
run: nix build ".?submodules=1#" --print-build-logs
- name: Verify outputs
run: |
- test -f result/lib/liblogoschat.so
+ if [[ "$RUNNER_OS" == "macOS" ]]; then
+ ext=dylib
+ else
+ ext=so
+ fi
+ test -f result/lib/liblogoschat.$ext
test -f result/include/liblogoschat.h