From 855eb3f5c600c4927c8de0047220c706e4bf13f1 Mon Sep 17 00:00:00 2001 From: ikappaki Date: Thu, 14 Dec 2023 02:29:44 +0100 Subject: [PATCH] ci: Build sqlite3 with Nix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f0da632..bcb88f2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,9 +89,9 @@ jobs: run: ../_scripts/bin/install-deps - name: 'Build Sqlite3' working-directory: sqlite3 - run: make all + run: nix-shell -p sqlite.dev --run "make all" - name: 'Build Emacsql' - run: make all + run: nix-shell -p sqlite.dev --run "make all" working-directory: ${{ env.pwd }} - name: 'Test Emacsql' run: make test