From 8616504cb92a496bfc44df012f1499673a2c3560 Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Tue, 10 Feb 2026 01:16:36 +0530 Subject: [PATCH] chore: ci fix --- .github/workflows/ci-nix.yml | 6 +++--- reliability.nimble | 16 ---------------- 2 files changed, 3 insertions(+), 19 deletions(-) delete mode 100644 reliability.nimble diff --git a/.github/workflows/ci-nix.yml b/.github/workflows/ci-nix.yml index a93c613..554011b 100644 --- a/.github/workflows/ci-nix.yml +++ b/.github/workflows/ci-nix.yml @@ -39,7 +39,7 @@ jobs: - name: 'Run tests' run: | nix develop '.?submodules=1' --accept-flake-config --command \ - nimble test + nim test sds.nims # Build desktop library build-desktop: @@ -62,7 +62,7 @@ jobs: nix build -L '.?submodules=1#libsds' \ --print-out-paths --accept-flake-config - name: 'Verify output' - run: file result/lib/* + run: ls -la result/lib/ # Build Android targets only on Linux — avoids macOS cross-compile issues build-android: @@ -85,4 +85,4 @@ jobs: nix build -L '.?submodules=1#${{ matrix.nixpkg }}' \ --print-out-paths --accept-flake-config - name: 'Verify output' - run: file result/jni/**/* 2>/dev/null || file result/lib/* + run: ls -laR result/ diff --git a/reliability.nimble b/reliability.nimble deleted file mode 100644 index 8bc19c8..0000000 --- a/reliability.nimble +++ /dev/null @@ -1,16 +0,0 @@ -# Package -version = "0.1.0" -author = "Waku Team" -description = "E2E Reliability Protocol API" -license = "MIT" -srcDir = "src" - -# Dependencies -requires "nim >= 2.0.8" -requires "chronicles" -requires "libp2p" - -# Tasks -task test, "Run the test suite": - exec "nim c -r tests/test_bloom.nim" - exec "nim c -r tests/test_reliability.nim"